This commit is contained in:
2026-03-17 18:32:44 +03:00
commit efcd4a8dfd
209 changed files with 33355 additions and 0 deletions
+116
View File
@@ -0,0 +1,116 @@
import React, { useState } from "react";
import { Link, useNavigate } from "react-router-dom";
import { LogIn, Loader2 } from "lucide-react";
import { toast } from "sonner";
import { useAuth } from "@/contexts/AuthContext";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
const Login: React.FC = () => {
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const { login } = useAuth();
const navigate = useNavigate();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (!email || !password) {
toast.error("Please fill in email and password");
return;
}
setIsLoading(true);
try {
await login(email, password);
toast.success("Logged in successfully");
navigate("/");
} catch (error: any) {
toast.error(error.message || "Login failed");
} finally {
setIsLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-muted/30 p-4">
<Card className="w-full max-w-md shadow-lg border-border">
<CardHeader className="space-y-1 text-center">
<div className="flex justify-center mb-4">
<div className="w-12 h-12 bg-primary rounded-xl flex items-center justify-center shadow-lg shadow-primary/20">
<span className="text-primary-foreground font-bold text-xl">
Ai
</span>
</div>
</div>
<CardTitle className="text-2xl font-bold">Sign In</CardTitle>
<CardDescription>
Login is for existing accounts only.
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
placeholder="admin@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
disabled={isLoading}
required
className="bg-background border-border"
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
type="password"
placeholder="your password"
value={password}
onChange={(e) => setPassword(e.target.value)}
disabled={isLoading}
required
className="bg-background border-border"
/>
</div>
<Button
type="submit"
className="w-full h-11 gap-2 mt-2"
disabled={isLoading}
>
{isLoading ? (
<Loader2 className="h-4 w-4 animate-spin" />
) : (
<LogIn className="h-4 w-4" />
)}
{isLoading ? "Signing in..." : "Sign In"}
</Button>
</form>
</CardContent>
<CardFooter className="flex flex-col space-y-4">
<div className="text-center text-sm text-muted-foreground">
Need an account?{" "}
<Link to="/register" className="text-primary font-medium hover:underline">
Register
</Link>
</div>
</CardFooter>
</Card>
</div>
);
};
export default Login;