Created
July 31, 2020 21:10
-
-
Save djibba22/5ff10a5271ca9112eb2d2dc70d8e48eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {Avatar, Button , CssBaseline , TextField, FormControlLabel, Checkbox, Link, Grid, Box } from '@material-ui/core'; | |
import LockOutlinedIcon from '@material-ui/icons/LockOutlined'; | |
import Typography from '@material-ui/core/Typography'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import Container from '@material-ui/core/Container'; | |
function Copyright() { | |
return ( | |
<Typography variant="body2" color="textSecondary" align="center"> | |
{'Copyright © '} | |
<Link color="inherit" href="https://material-ui.com/"> | |
Your Website | |
</Link>{' '} | |
{new Date().getFullYear()} | |
{'.'} | |
</Typography> | |
); | |
} | |
const useStyles = makeStyles((theme) => ({ | |
paper: { | |
marginTop: theme.spacing(8), | |
display: 'flex', | |
flexDirection: 'column', | |
alignItems: 'center', | |
}, | |
avatar: { | |
margin: theme.spacing(1), | |
backgroundColor: theme.palette.secondary.main, | |
}, | |
form: { | |
width: '100%', // Fix IE 11 issue. | |
marginTop: theme.spacing(3), | |
}, | |
submit: { | |
margin: theme.spacing(3, 0, 2), | |
}, | |
})); | |
export default function SignUp() { | |
const classes = useStyles(); | |
return ( | |
<Container component="main" maxWidth="xs"> | |
<CssBaseline /> | |
<div className={classes.paper}> | |
<Avatar className={classes.avatar}> | |
<LockOutlinedIcon /> | |
</Avatar> | |
<Typography component="h1" variant="h5"> | |
Sign up | |
</Typography> | |
<form className={classes.form} noValidate> | |
<Grid container spacing={2}> | |
<Grid item xs={12} sm={6}> | |
<TextField | |
autoComplete="fname" | |
name="firstName" | |
variant="outlined" | |
required | |
fullWidth | |
id="firstName" | |
label="First Name" | |
autoFocus | |
/> | |
</Grid> | |
<Grid item xs={12} sm={6}> | |
<TextField | |
variant="outlined" | |
required | |
fullWidth | |
id="lastName" | |
label="Last Name" | |
name="lastName" | |
autoComplete="lname" | |
/> | |
</Grid> | |
<Grid item xs={12}> | |
<TextField | |
variant="outlined" | |
required | |
fullWidth | |
id="email" | |
label="Email Address" | |
name="email" | |
autoComplete="email" | |
/> | |
</Grid> | |
<Grid item xs={12}> | |
<TextField | |
variant="outlined" | |
required | |
fullWidth | |
name="password" | |
label="Password" | |
type="password" | |
id="password" | |
autoComplete="current-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" | |
color="primary" | |
className={classes.submit} | |
> | |
Sign Up | |
</Button> | |
<Grid container justify="flex-end"> | |
<Grid item> | |
<Link href="/signin" variant="body2"> | |
Already have an account? Sign in | |
</Link> | |
</Grid> | |
</Grid> | |
</form> | |
</div> | |
<Box mt={5}> | |
<Copyright /> | |
</Box> | |
</Container> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment