47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { signIn } from "next-auth/react";
|
|
import { useRouter } from "next/navigation";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export default function LoginForm() {
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
const router = useRouter();
|
|
|
|
async function handleSubmit(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
setError("");
|
|
const res = await signIn("credentials", { email, password, redirect: false });
|
|
setLoading(false);
|
|
if (res?.error) {
|
|
setError("Email ou mot de passe invalide");
|
|
} else {
|
|
router.push("/dashboard");
|
|
router.refresh();
|
|
}
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{error && <div className="text-sm text-destructive text-center">{error}</div>}
|
|
<div>
|
|
<label className="block text-sm font-medium mb-1">Email</label>
|
|
<Input type="email" value={email} onChange={(e) => setEmail(e.target.value)} required />
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium mb-1">Mot de passe</label>
|
|
<Input type="password" value={password} onChange={(e) => setPassword(e.target.value)} required />
|
|
</div>
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
|
{loading ? "Connexion..." : "Se connecter"}
|
|
</Button>
|
|
</form>
|
|
);
|
|
}
|