Skip to content

Commit

Permalink
Added Login Page Component
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddheshShinde-tech committed Oct 24, 2020
1 parent c9413f9 commit e062e09
Show file tree
Hide file tree
Showing 12 changed files with 414 additions and 4 deletions.
243 changes: 243 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
Expand Down
2 changes: 2 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
src="https://use.fontawesome.com/releases/v5.12.1/js/all.js"
></script>

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />

<!-- Bootstrap Scripts -->
<script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
Expand Down
5 changes: 5 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
pointer-events: none;
}

.login-logo{
height: 13vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
Expand Down
13 changes: 10 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import React from "react";
import './App.css'
import './App.css';
import Footer from "../src/Components/Footer";
import Navbar from "../src/Components/Navbar/Navbar";
import Img from "../src/Components/Img.png"
import Img from "../src/Components/Img.png";
import background from "../src/Components/images/show_everyone.jpeg";
import Maincard from "../src/MainpageCards/Maincard"
import Maincard from "../src/MainpageCards/Maincard";
import SignInSide from "./Components/login/logIn"; // Login Page Component

function App() {
return (
Expand All @@ -13,10 +14,16 @@ function App() {
<Navbar></Navbar>
<img className="image" src={background} alt="background-image" />
</div>

<div>
<Maincard></Maincard>
<br></br>
</div>

<div>
<SignInSide></SignInSide>
</div>

<div className="page-container">
<div className="content-wrap"></div>
<div className="Footer-img" style={{backgroundImage: `url(${Img})`}}>
Expand Down
Loading

0 comments on commit e062e09

Please sign in to comment.