2025-08-15 23:03:15 +07:00

127 lines
4.1 KiB
TypeScript

"use client"
import type React from "react"
import { useState } from "react"
import { useRouter } from "next/navigation"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { Alert, AlertDescription } from "@/components/ui/alert"
import { Vote, ArrowLeft, Loader2 } from "lucide-react"
import Link from "next/link"
import { useAuth } from "@/hooks/use-auth"
export default function LoginPage() {
const [email, setEmail] = useState("")
const [password, setPassword] = useState("")
const [error, setError] = useState("")
const [loading, setLoading] = useState(false)
const router = useRouter()
const { login } = useAuth()
const handleLogin = async (e: React.FormEvent) => {
e.preventDefault()
setLoading(true)
setError("")
try {
const result = await login(email, password)
if (result.success) {
// Redirect to home page after successful login
router.push("/")
} else {
setError(result.message)
}
} catch (err) {
console.error("Login error:", err)
setError("Terjadi kesalahan sistem. Silakan coba lagi.")
} finally {
setLoading(false)
}
}
return (
<div
className="min-h-screen flex items-center justify-center p-4 relative bg-cover bg-center bg-no-repeat"
style={{ backgroundImage: `url('/images/solar-background.jpg')` }}
>
{/* Dark overlay for better contrast */}
<div className="absolute inset-0 bg-black/50"></div>
<Card className="w-full max-w-md relative z-10 bg-white/95 backdrop-blur-sm shadow-2xl">
<CardHeader className="text-center">
<Link href="/" className="inline-flex items-center text-sm text-gray-600 hover:text-gray-900 mb-4">
<ArrowLeft className="h-4 w-4 mr-1" />
Kembali ke Beranda
</Link>
<div className="flex justify-center mb-4">
<img src="/images/meti-logo.png" alt="METI - New & Renewable Energy" className="h-16 w-auto" />
</div>
<Vote className="h-12 w-12 text-blue-600 mx-auto mb-4" />
<CardTitle className="text-2xl text-gray-900">
Login METI
</CardTitle>
<CardDescription className="text-gray-700">
Masuk ke sistem voting METI
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleLogin} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email" className="text-gray-800">
Email
</Label>
<Input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
placeholder="Masukkan email"
className="bg-white/90"
disabled={loading}
/>
</div>
<div className="space-y-2">
<Label htmlFor="password" className="text-gray-800">
Password
</Label>
<Input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
placeholder="Masukkan password"
className="bg-white/90"
disabled={loading}
/>
</div>
{error && (
<Alert variant="destructive">
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<Button type="submit" className="w-full" disabled={loading}>
{loading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Memproses...
</>
) : (
"Login"
)}
</Button>
</form>
</CardContent>
</Card>
</div>
)
}