135 lines
3.5 KiB
TypeScript
135 lines
3.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import {
|
|
Box,
|
|
TextField,
|
|
Button,
|
|
Typography,
|
|
Alert,
|
|
Link,
|
|
Container,
|
|
Paper,
|
|
} from '@mui/material';
|
|
import { useAuth } from '../../contexts/AuthContext';
|
|
import { useNavigate, Link as RouterLink } from 'react-router-dom';
|
|
|
|
const Login: React.FC = () => {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const { login } = useAuth();
|
|
const navigate = useNavigate();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
setLoading(true);
|
|
|
|
try {
|
|
await login(email, password);
|
|
navigate('/dashboard');
|
|
} catch (err: any) {
|
|
setError(err.response?.data?.error || err.message || 'Login failed');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Container component="main" maxWidth="sm">
|
|
<Box
|
|
sx={{
|
|
marginTop: 8,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
}}
|
|
>
|
|
<Paper
|
|
elevation={3}
|
|
sx={{
|
|
padding: 4,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<Typography component="h1" variant="h4" sx={{ mb: 2, color: 'primary.main' }}>
|
|
Project Dashboard
|
|
</Typography>
|
|
|
|
<Typography component="h2" variant="h5" sx={{ mb: 3 }}>
|
|
Sign In
|
|
</Typography>
|
|
|
|
{error && (
|
|
<Alert severity="error" sx={{ width: '100%', mb: 2 }}>
|
|
{error}
|
|
</Alert>
|
|
)}
|
|
|
|
<Box component="form" onSubmit={handleSubmit} sx={{ width: '100%' }}>
|
|
<TextField
|
|
margin="normal"
|
|
required
|
|
fullWidth
|
|
id="email"
|
|
label="Email Address"
|
|
name="email"
|
|
autoComplete="email"
|
|
autoFocus
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
/>
|
|
|
|
<TextField
|
|
margin="normal"
|
|
required
|
|
fullWidth
|
|
name="password"
|
|
label="Password"
|
|
type="password"
|
|
id="password"
|
|
autoComplete="current-password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
/>
|
|
|
|
<Button
|
|
type="submit"
|
|
fullWidth
|
|
variant="contained"
|
|
sx={{ mt: 3, mb: 2 }}
|
|
disabled={loading}
|
|
>
|
|
{loading ? 'Signing In...' : 'Sign In'}
|
|
</Button>
|
|
|
|
<Box textAlign="center">
|
|
<Link component={RouterLink} to="/register" variant="body2">
|
|
Don't have an account? Sign Up
|
|
</Link>
|
|
</Box>
|
|
</Box>
|
|
</Paper>
|
|
|
|
<Box sx={{ mt: 3, textAlign: 'center' }}>
|
|
<Typography variant="body2" color="text.secondary">
|
|
Demo Credentials:
|
|
</Typography>
|
|
<Typography variant="body2" color="text.secondary">
|
|
Email: admin@example.com
|
|
</Typography>
|
|
<Typography variant="body2" color="text.secondary">
|
|
Password: admin123
|
|
</Typography>
|
|
</Box>
|
|
</Box>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default Login;
|