66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useAuth } from "../../context/AuthContext";
|
|
|
|
import { Box, Button, Container, TextField, Typography } from "@mui/material";
|
|
import { useNavigate } from "react-router-dom";
|
|
import appColors from "../../utils/colors";
|
|
|
|
|
|
const LoginPage = () => {
|
|
const { login, user } = useAuth();
|
|
const [username, setUsername] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const navigate = useNavigate();
|
|
|
|
useEffect(() => {
|
|
if (user) {
|
|
navigate("/profile");
|
|
}
|
|
}, [user, navigate]);
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
await login({ username, password });
|
|
};
|
|
|
|
return (
|
|
<Container>
|
|
<Box sx={{ padding: 4, maxWidth: 360, margin: "auto" }}>
|
|
<Typography variant="h4" mb={3} textAlign="center">
|
|
Login
|
|
</Typography>
|
|
<form onSubmit={handleSubmit}>
|
|
<TextField
|
|
label="Username"
|
|
type="text"
|
|
value={username}
|
|
onChange={(e) => setUsername(e.target.value)}
|
|
fullWidth
|
|
margin="normal"
|
|
required
|
|
/>
|
|
<TextField
|
|
label="Password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
fullWidth
|
|
margin="normal"
|
|
required
|
|
/>
|
|
<Button
|
|
type="submit"
|
|
variant="contained"
|
|
fullWidth
|
|
sx={{ mt: "10px", backgroundColor: appColors.primary }}
|
|
>
|
|
Login
|
|
</Button>
|
|
</form>
|
|
</Box>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default LoginPage;
|