143 lines
4.1 KiB
JavaScript
143 lines
4.1 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 SignUpForm() {
|
|
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 Up
|
|
</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 up
|
|
</Typography>
|
|
|
|
<Box component="form" noValidate onSubmit={handleSubmit} sx={{ mt: 3 }}>
|
|
<Grid container spacing={2}>
|
|
<Grid item xs={12} sm={6}>
|
|
<TextField
|
|
autoComplete="given-name"
|
|
name="firstName"
|
|
required
|
|
fullWidth
|
|
id="firstName"
|
|
label="First Name"
|
|
autoFocus
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12} sm={6}>
|
|
<TextField
|
|
required
|
|
fullWidth
|
|
id="lastName"
|
|
label="Last Name"
|
|
name="lastName"
|
|
autoComplete="family-name"
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12}>
|
|
<TextField
|
|
required
|
|
fullWidth
|
|
id="email"
|
|
label="Email Address"
|
|
name="email"
|
|
autoComplete="email"
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12}>
|
|
<TextField
|
|
required
|
|
fullWidth
|
|
name="password"
|
|
label="Password"
|
|
type="password"
|
|
id="password"
|
|
autoComplete="new-password"
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid item xs={12}>
|
|
<FormControlLabel
|
|
control={<Checkbox value="allowExtraEmails" color="primary" />}
|
|
label="I want to receive inspiration, marketing promotions and updates via email."
|
|
/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Button
|
|
type="submit"
|
|
fullWidth
|
|
variant="contained"
|
|
sx={{ mt: 3, mb: 2, color: "#fff !important" }}
|
|
size="large"
|
|
>
|
|
Sign Up
|
|
</Button>
|
|
|
|
<Grid container justifyContent="flex-end">
|
|
<Grid item>
|
|
<Link href="#" variant="body2">
|
|
Already have an account? Sign in
|
|
</Link>
|
|
</Grid>
|
|
</Grid>
|
|
</Box>
|
|
</Box>
|
|
</Container>
|
|
</Card>
|
|
</>
|
|
);
|
|
} |