141 lines
4.5 KiB
TypeScript
141 lines
4.5 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 RegisterPage() {
|
|
const router = useRouter()
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [confirmPassword, setConfirmPassword] = useState('')
|
|
const [error, setError] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
|
|
if (password !== confirmPassword) {
|
|
setError('Passwords do not match')
|
|
return
|
|
}
|
|
|
|
if (password.length < 8) {
|
|
setError('Password must be at least 8 characters')
|
|
return
|
|
}
|
|
|
|
setLoading(true)
|
|
|
|
try {
|
|
const data = await authAPI.register(email, password)
|
|
saveAuth(data.token, data.user)
|
|
router.push('/dashboard')
|
|
} catch (err: any) {
|
|
const message = err.response?.data?.message || 'Failed to register'
|
|
const details = err.response?.data?.details
|
|
|
|
if (details && Array.isArray(details)) {
|
|
setError(details.join(', '))
|
|
} else {
|
|
setError(message)
|
|
}
|
|
} 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">Create account</CardTitle>
|
|
<CardDescription>
|
|
Start monitoring your websites for changes
|
|
</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
|
|
/>
|
|
|
|
<Input
|
|
label="Password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
hint="At least 8 characters with uppercase, lowercase, and number"
|
|
required
|
|
/>
|
|
|
|
<Input
|
|
label="Confirm Password"
|
|
type="password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
required
|
|
/>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
size="lg"
|
|
loading={loading}
|
|
>
|
|
{loading ? 'Creating account...' : 'Create Account'}
|
|
</Button>
|
|
</form>
|
|
</CardContent>
|
|
|
|
<CardFooter className="justify-center border-t pt-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
Already have an account?{' '}
|
|
<Link
|
|
href="/login"
|
|
className="font-medium text-primary hover:underline"
|
|
>
|
|
Sign in
|
|
</Link>
|
|
</p>
|
|
</CardFooter>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|