chore; liint

This commit is contained in:
karishmas6
2024-10-10 21:18:49 +05:30
parent 53786da128
commit 501332432e

View File

@@ -50,66 +50,66 @@ const Register = () => {
}; };
return ( return (
<Box <Box
sx={{ sx={{
display: 'flex', display: 'flex',
flexDirection: 'column', flexDirection: 'column',
alignItems: 'center', alignItems: 'center',
mt: 5, mt: 5,
}} }}
> >
<Typography variant="h4" gutterBottom> <Typography variant="h4" gutterBottom>
Create an account Create an account
</Typography> </Typography>
<Box component="form" onSubmit={submitForm} sx={{ maxWidth: 400, width: '100%' }}> <Box component="form" onSubmit={submitForm} sx={{ maxWidth: 400, width: '100%' }}>
<TextField <TextField
margin="normal" margin="normal"
required required
fullWidth fullWidth
id="email" id="email"
label="Email Address" label="Email Address"
name="email" name="email"
value={email} value={email}
onChange={handleChange} onChange={handleChange}
autoComplete="email" autoComplete="email"
/> />
<TextField <TextField
margin="normal" margin="normal"
required required
fullWidth fullWidth
name="password" name="password"
label="Password" label="Password"
type="password" type="password"
id="password" id="password"
value={password} value={password}
onChange={handleChange} onChange={handleChange}
autoComplete="current-password" autoComplete="current-password"
/> />
<Button <Button
type="submit" type="submit"
fullWidth fullWidth
variant="contained" variant="contained"
color="primary" color="primary"
sx={{ mt: 3, mb: 2 }} sx={{ mt: 3, mb: 2 }}
disabled={loading || !email || !password} disabled={loading || !email || !password}
> >
{loading ? ( {loading ? (
<> <>
<CircularProgress size={20} sx={{ mr: 2 }} /> <CircularProgress size={20} sx={{ mr: 2 }} />
Loading Loading
</> </>
) : ( ) : (
'Register' 'Register'
)} )}
</Button> </Button>
<Typography variant="body2" align="center"> <Typography variant="body2" align="center">
Already have an account?{' '} Already have an account?{' '}
<Link to="/login" style={{ textDecoration: 'none', color: '#1976d2' }}> <Link to="/login" style={{ textDecoration: 'none', color: '#1976d2' }}>
Login Login
</Link> </Link>
</Typography> </Typography>
</Box>
</Box> </Box>
</Box>
); );
}; };