first commit

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-03-25 20:44:56 -04:00
commit 97cc85c49d
711 changed files with 109164 additions and 0 deletions
+72
View File
@@ -0,0 +1,72 @@
import { Typography } from "@mui/material";
import { Box } from "@mui/system";
import Button from "@mui/material/Button";
export default function ConfirmMail() {
return (
<>
<div className="authenticationBox">
<Box
component="main"
sx={{
padding: "70px 0 100px",
}}
>
<Box
sx={{
background: "#fff",
padding: "30px 20px",
borderRadius: "10px",
maxWidth: "510px",
ml: "auto",
mr: "auto",
textAlign: "center",
}}
className="bg-black"
>
<Box>
<img src="/images/logo.png" alt="Black logo" className="black-logo" />
<img src="/images/logo-white.png" alt="White logo" className="white-logo" />
</Box>
<Box mt={4} mb={4}>
<img src="/images/message.png" alt="Message" />
</Box>
<Typography as="h1" fontSize="20px" fontWeight="500" mb={1}>
Success!
</Typography>
<Typography>
A email has been send to{" "}
<a
href="mailto:envytheme@info.com"
className="primaryColor text-decoration-none"
>
envytheme@info.com
</a>
. Please check for an email from company and click on the included
link to reset your password.
</Typography>
<Button
href="/"
fullWidth
variant="contained"
sx={{
mt: 3,
textTransform: "capitalize",
borderRadius: "8px",
fontWeight: "500",
fontSize: "16px",
padding: "12px 10px",
color: "#fff !important"
}}
>
Back To Home
</Button>
</Box>
</Box>
</div>
</>
);
}
+9
View File
@@ -0,0 +1,9 @@
import ForgotPasswordForm from '@/components/Authentication/ForgotPasswordForm';
export default function SignIn() {
return (
<>
<ForgotPasswordForm />
</>
);
}
+9
View File
@@ -0,0 +1,9 @@
import LockScreenForm from '@/components/Authentication/LockScreenForm';
export default function LockScreen() {
return (
<>
<LockScreenForm />
</>
);
}
+74
View File
@@ -0,0 +1,74 @@
import { Typography } from "@mui/material";
import { Box } from "@mui/system";
import Button from "@mui/material/Button";
export default function Logout() {
return (
<>
<div className="authenticationBox">
<Box
component="main"
sx={{
padding: "70px 0 100px",
}}
>
<Box
sx={{
background: "#fff",
padding: "30px 20px",
borderRadius: "10px",
maxWidth: "510px",
ml: "auto",
mr: "auto",
textAlign: "center"
}}
className="bg-black"
>
<Box>
<img
src="/images/logo.png"
alt="Black logo"
className="black-logo"
/>
<img
src="/images/logo-white.png"
alt="White logo"
className="white-logo"
/>
</Box>
<Box mt={4} mb={4}>
<img src="/images/coffee.png" alt="Coffee" />
</Box>
<Typography as="h1" fontSize="20px" fontWeight="500" mb={1}>
You are Logged Out
</Typography>
<Typography>
Thank you for using Admash admin template
</Typography>
<Button
href="/authentication/sign-in/"
fullWidth
variant="contained"
sx={{
mt: 3,
textTransform: "capitalize",
borderRadius: "8px",
fontWeight: "500",
fontSize: "16px",
padding: "12px 10px",
color: "#fff !important"
}}
>
Sign In
</Button>
</Box>
</Box>
</div>
</>
);
}
+9
View File
@@ -0,0 +1,9 @@
import SignInForm from '@/components/Authentication/SignInForm';
export default function SignIn() {
return (
<>
<SignInForm />
</>
);
}
+9
View File
@@ -0,0 +1,9 @@
import SignUpForm from '@/components/Authentication/SignUpForm';
export default function SignUp() {
return (
<>
<SignUpForm />
</>
);
}