127 lines
3.3 KiB
JavaScript
127 lines
3.3 KiB
JavaScript
import * as React from "react";
|
|
import Avatar from "@mui/material/Avatar";
|
|
import Button from "@mui/material/Button";
|
|
import CssBaseline from "@mui/material/CssBaseline";
|
|
import TextField from "@mui/material/TextField";
|
|
import FormControlLabel from "@mui/material/FormControlLabel";
|
|
import Checkbox from "@mui/material/Checkbox";
|
|
import Link from "@mui/material/Link";
|
|
import Grid from "@mui/material/Grid";
|
|
import Box from "@mui/material/Box";
|
|
import LockOutlinedIcon from "@mui/icons-material/LockOutlined";
|
|
import Typography from "@mui/material/Typography";
|
|
import Container from "@mui/material/Container";
|
|
|
|
import Card from "@mui/material/Card";
|
|
|
|
export default function SignInForm() {
|
|
const handleSubmit = (event) => {
|
|
event.preventDefault();
|
|
const data = new FormData(event.currentTarget);
|
|
console.log({
|
|
email: data.get("email"),
|
|
password: data.get("password"),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: "10px",
|
|
}}
|
|
>
|
|
Sign In
|
|
</Typography>
|
|
|
|
<Container component="main" maxWidth="xs">
|
|
<CssBaseline />
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<Avatar sx={{ m: 1, bgcolor: "secondary.main" }}>
|
|
<LockOutlinedIcon />
|
|
</Avatar>
|
|
|
|
<Typography component="h1" variant="h5">
|
|
Sign in
|
|
</Typography>
|
|
|
|
<Box
|
|
component="form"
|
|
onSubmit={handleSubmit}
|
|
noValidate
|
|
sx={{ mt: 1 }}
|
|
>
|
|
<TextField
|
|
margin="normal"
|
|
required
|
|
fullWidth
|
|
id="email"
|
|
label="Email Address"
|
|
name="email"
|
|
autoComplete="email"
|
|
autoFocus
|
|
/>
|
|
|
|
<TextField
|
|
margin="normal"
|
|
required
|
|
fullWidth
|
|
name="password"
|
|
label="Password"
|
|
type="password"
|
|
id="password"
|
|
autoComplete="current-password"
|
|
/>
|
|
|
|
<FormControlLabel
|
|
control={<Checkbox value="remember" color="primary" />}
|
|
label="Remember me"
|
|
/>
|
|
|
|
<Button
|
|
type="submit"
|
|
fullWidth
|
|
variant="contained"
|
|
size="large"
|
|
sx={{ mt: 3, mb: 2, color: "#fff !important" }}
|
|
>
|
|
Sign In
|
|
</Button>
|
|
|
|
<Grid container>
|
|
<Grid item xs>
|
|
<Link href="#" variant="body2">
|
|
Forgot password?
|
|
</Link>
|
|
</Grid>
|
|
<Grid item>
|
|
<Link href="#" variant="body2">
|
|
{"Don't have an account? Sign Up"}
|
|
</Link>
|
|
</Grid>
|
|
</Grid>
|
|
</Box>
|
|
</Box>
|
|
</Container>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|