110 lines
3.5 KiB
TypeScript
110 lines
3.5 KiB
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
import { useState } from "react"
|
|
import { useRouter } from "next/navigation"
|
|
import { useAuth } from "@/lib/auth-context"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { Terminal, AlertCircle, Loader2 } from "lucide-react"
|
|
|
|
export default function LoginPage() {
|
|
const [email, setEmail] = useState("")
|
|
const [password, setPassword] = useState("")
|
|
const [error, setError] = useState("")
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
const { login } = useAuth()
|
|
const router = useRouter()
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setError("")
|
|
setIsSubmitting(true)
|
|
|
|
const success = await login(email, password)
|
|
|
|
if (success) {
|
|
router.push("/admin")
|
|
} else {
|
|
setError("Invalid credentials")
|
|
}
|
|
setIsSubmitting(false)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-background flex items-center justify-center p-6">
|
|
<div className="w-full max-w-sm space-y-8">
|
|
{/* Header */}
|
|
<div className="text-center space-y-2">
|
|
<div className="flex items-center justify-center gap-2 text-primary">
|
|
<Terminal size={24} />
|
|
<span className="font-mono text-lg font-semibold">atticl</span>
|
|
</div>
|
|
<h1 className="text-2xl font-semibold text-foreground">Admin Login</h1>
|
|
<p className="text-sm text-muted-foreground font-mono">$ authenticate --session</p>
|
|
</div>
|
|
|
|
{/* Login form */}
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
<div className="bg-card border border-border rounded-lg p-6 space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email" className="text-sm font-mono text-muted-foreground">
|
|
Email
|
|
</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="admin@atticl.com"
|
|
className="font-mono"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password" className="text-sm font-mono text-muted-foreground">
|
|
Password
|
|
</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
className="font-mono"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="flex items-center gap-2 text-destructive text-sm">
|
|
<AlertCircle size={14} />
|
|
<span className="font-mono">{error}</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<Button type="submit" className="w-full font-mono" disabled={isSubmitting}>
|
|
{isSubmitting ? (
|
|
<>
|
|
<Loader2 size={16} className="animate-spin mr-2" />
|
|
Authenticating...
|
|
</>
|
|
) : (
|
|
"Login"
|
|
)}
|
|
</Button>
|
|
</form>
|
|
|
|
{/* Dev hint */}
|
|
<div className="text-center">
|
|
<p className="text-xs text-muted-foreground font-mono">Demo: admin@atticl.com / admin123</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|