122 lines
4.0 KiB
TypeScript
122 lines
4.0 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import Link from 'next/link'
|
|
import Image from 'next/image'
|
|
import { authAPI } from '@/lib/api'
|
|
import { saveAuth } from '@/lib/auth'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from '@/components/ui/card'
|
|
|
|
export default function LoginPage() {
|
|
const router = useRouter()
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [error, setError] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
setLoading(true)
|
|
|
|
try {
|
|
const data = await authAPI.login(email, password)
|
|
saveAuth(data.token, data.user)
|
|
router.push('/dashboard')
|
|
} catch (err: any) {
|
|
setError(err.response?.data?.message || 'Failed to login')
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-background px-4">
|
|
{/* Subtle Background Pattern */}
|
|
<div className="fixed inset-0 -z-10 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(196,178,156,0.15),rgba(255,255,255,0))]" />
|
|
|
|
<div className="w-full max-w-md animate-fade-in">
|
|
<Card className="shadow-xl border-border/50">
|
|
<CardHeader className="text-center pb-2">
|
|
<div className="mx-auto mb-4 flex h-16 w-16 items-center justify-center relative">
|
|
<Image
|
|
src="/logo.png"
|
|
alt="Alertify Logo"
|
|
fill
|
|
className="object-contain"
|
|
priority
|
|
/>
|
|
</div>
|
|
<CardTitle className="text-2xl font-bold">Welcome back</CardTitle>
|
|
<CardDescription>
|
|
Sign in to your Alertify account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
|
|
<CardContent className="pt-6">
|
|
{error && (
|
|
<div className="mb-4 rounded-lg bg-destructive/10 p-3 text-sm text-destructive animate-fade-in">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<Input
|
|
label="Email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="you@example.com"
|
|
required
|
|
/>
|
|
|
|
<div>
|
|
<Input
|
|
label="Password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
required
|
|
/>
|
|
<div className="mt-1 text-right">
|
|
<Link
|
|
href="/forgot-password"
|
|
className="text-sm text-primary hover:underline"
|
|
>
|
|
Forgot password?
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
size="lg"
|
|
loading={loading}
|
|
>
|
|
{loading ? 'Signing in...' : 'Sign In'}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
|
|
<CardFooter className="justify-center border-t pt-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
Don't have an account?{' '}
|
|
<Link
|
|
href="/register"
|
|
className="font-medium text-primary hover:underline"
|
|
>
|
|
Create account
|
|
</Link>
|
|
</p>
|
|
</CardFooter>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|