mirror of
http://88.130.71.182:3000/BlitTech/badoHair_fe.git
synced 2026-06-12 23:23:22 +00:00
68 lines
2.4 KiB
TypeScript
68 lines
2.4 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { Lock } from "lucide-react";
|
|
import { useAdmin } from "@/contexts/AdminContext";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { toast } from "sonner";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function AdminLogin() {
|
|
const { login, isAdmin } = useAdmin();
|
|
const route = useRouter();
|
|
const [password, setPassword] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
setTimeout(() => {
|
|
const ok = login(password);
|
|
setLoading(false);
|
|
if (ok) {
|
|
toast.success("Connexion réussie");
|
|
route.push("/admin");
|
|
} else {
|
|
toast.error("Mot de passe incorrect");
|
|
}
|
|
}, 300);
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-muted/30 px-4">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader className="text-center">
|
|
<div className="mx-auto h-12 w-12 rounded-full bg-primary/10 flex items-center justify-center mb-2">
|
|
<Lock className="h-5 w-5 text-primary" />
|
|
</div>
|
|
<CardTitle className="font-serif">Espace Admin</CardTitle>
|
|
<CardDescription>Accès réservé à la gestion du site</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Mot de passe</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
required
|
|
autoFocus
|
|
/>
|
|
<p className="text-xs text-muted-foreground">Démo : <span className="font-mono">admin123</span></p>
|
|
</div>
|
|
<Button type="submit" className="w-full p-6" disabled={loading}>
|
|
{loading ? "Connexion..." : "Se connecter"}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|