Added wallpaper to the Authentication Page

This commit was merged in pull request #4.
This commit is contained in:
2023-10-19 04:44:38 -07:00
parent c92644222e
commit 5d4cbc7a1c
6 changed files with 36 additions and 26 deletions
+4 -23
View File
@@ -7,7 +7,7 @@ import TextField from "@mui/material/TextField";
import Button from "@mui/material/Button";
import FormControlLabel from "@mui/material/FormControlLabel";
import Checkbox from "@mui/material/Checkbox";
import styles from "@/components/Authentication/Authentication.module.css";
import styles from "./signinform.module.css";
import WrenchBoardLogo from "@/public/images/logos/wrenchboard-logo.png";
const SignInForm = () => {
@@ -22,7 +22,7 @@ const SignInForm = () => {
return (
<>
<div className="authenticationBox">
<div className={styles.authenticationBox}>
<Box
component="main"
sx={{
@@ -41,12 +41,12 @@ const SignInForm = () => {
mb="60px"
>
<img
src="/images/logos/wrenchboard-logo.png"
src="/images/logos/android-chrome-512x512.png"
alt="logo"
className={styles.favicon}
/>
</Box>
<Typography as="h1" fontSize="28px" fontWeight="700" mb="5px">
<Typography as="h1" fontSize="28px" fontWeight="700" mb="5px" color="#fff">
Sign In{" "}
</Typography>
@@ -116,25 +116,6 @@ const SignInForm = () => {
</Grid>
</Box>
<Grid container alignItems="center" spacing={2}>
<Grid item xs={6} sm={6}>
<FormControlLabel
control={
<Checkbox value="allowExtraEmails" color="primary" />
}
label="Remember me."
/>
</Grid>
<Grid item xs={6} sm={6} textAlign="end">
<Link
href="/auth/forgot-password"
className="primaryColor text-decoration-none"
>
Forgot your password?
</Link>
</Grid>
</Grid>
<Button
type="submit"