source: frontend/src/Pages/LoginPage.js@ 5528b99

Last change on this file since 5528b99 was 5528b99, checked in by darsov2 <62809499+darsov2@…>, 9 months ago

revert

  • Property mode set to 100644
File size: 667 bytes
Line 
1import React from "react";
2import LoginForm from "../Components/Login/LoginForm";
3import { Container } from "react-bootstrap";
4import Navigation from "../Components/Layout/Navbar/Navigation";
5
6const LoginPage = () => {
7 document.body.style.backgroundColor = "#159895";
8 document.body.style.marginTop = "auto";
9 document.body.style.marginBottom = "auto";
10 return (
11 <>
12 {" "}
13 <Container fluid className="px-0">
14 <Navigation />
15 </Container>
16 <Container className="mt-5">
17 <Container style={{ width: "40%" }}>
18 <LoginForm></LoginForm>
19 </Container>
20 </Container>
21 </>
22 );
23};
24
25export default LoginPage;
Note: See TracBrowser for help on using the repository browser.