File size: 3,226 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
/*!
=========================================================
* Argon Dashboard React - v1.2.4
=========================================================
* Product Page: https://www.creative-tim.com/product/argon-dashboard-react
* Copyright 2024 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/argon-dashboard-react/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import React from "react";
import { useLocation, Route, Routes, Navigate } from "react-router-dom";
// reactstrap components
import { Container, Row, Col } from "reactstrap";
// core components
import AuthNavbar from "components/Navbars/AuthNavbar.js";
import AuthFooter from "components/Footers/AuthFooter.js";
import routes from "routes.js";
const Auth = (props) => {
const mainContent = React.useRef(null);
const location = useLocation();
React.useEffect(() => {
document.body.classList.add("bg-default");
return () => {
document.body.classList.remove("bg-default");
};
}, []);
React.useEffect(() => {
document.documentElement.scrollTop = 0;
document.scrollingElement.scrollTop = 0;
mainContent.current.scrollTop = 0;
}, [location]);
const getRoutes = (routes) => {
return routes.map((prop, key) => {
if (prop.layout === "/auth") {
return (
<Route path={prop.path} element={prop.component} key={key} exact />
);
} else {
return null;
}
});
};
return (
<>
<div className="main-content" ref={mainContent}>
<AuthNavbar />
<div className="header bg-gradient-info py-7 py-lg-8">
<Container>
<div className="header-body text-center mb-7">
<Row className="justify-content-center">
<Col lg="5" md="6">
<h1 className="text-white">Welcome!</h1>
<p className="text-lead text-light">
Use these awesome forms to login or create new account in
your project for free.
</p>
</Col>
</Row>
</div>
</Container>
<div className="separator separator-bottom separator-skew zindex-100">
<svg
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="none"
version="1.1"
viewBox="0 0 2560 100"
x="0"
y="0"
>
<polygon
className="fill-default"
points="2560 0 2560 100 0 100"
/>
</svg>
</div>
</div>
{/* Page content */}
<Container className="mt--8 pb-5">
<Row className="justify-content-center">
<Routes>
{getRoutes(routes)}
<Route path="*" element={<Navigate to="/auth/login" replace />} />
</Routes>
</Row>
</Container>
</div>
<AuthFooter />
</>
);
};
export default Auth;
|