79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import { useState, type FormEvent } from "react";
|
|
import { useNavigate, Link } from "react-router";
|
|
import { api } from "~/api/client";
|
|
import { Button } from "~/components/Button";
|
|
import { Input } from "~/components/Input";
|
|
|
|
export default function Login() {
|
|
const navigate = useNavigate();
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleSubmit = async (e: FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
setLoading(true);
|
|
|
|
try {
|
|
await api.login({ email, password });
|
|
navigate("/dashboard");
|
|
} catch (err) {
|
|
setError(err instanceof Error ? err.message : "Login failed");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-100 px-4">
|
|
<div className="max-w-md w-full bg-white rounded-lg shadow-xl p-8">
|
|
<div className="text-center mb-8">
|
|
<h1 className="text-3xl font-bold text-gray-900">Grademaxxing</h1>
|
|
<p className="text-gray-600 mt-2">Sign in to your account</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
<Input
|
|
type="email"
|
|
label="Email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="your@email.com"
|
|
required
|
|
autoComplete="email"
|
|
/>
|
|
|
|
<Input
|
|
type="password"
|
|
label="Password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
required
|
|
autoComplete="current-password"
|
|
/>
|
|
|
|
{error && (
|
|
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
|
{loading ? "Signing in..." : "Sign In"}
|
|
</Button>
|
|
</form>
|
|
|
|
<p className="mt-6 text-center text-sm text-gray-600">
|
|
Don't have an account?{" "}
|
|
<Link to="/register" className="text-blue-600 hover:text-blue-700 font-medium">
|
|
Sign up
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|