147 lines
4.8 KiB
TypeScript
147 lines
4.8 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import Link from 'next/link'
|
|
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-14 w-14 items-center justify-center rounded-xl bg-primary/10">
|
|
<svg
|
|
className="h-7 w-7 text-primary"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
d="M18 9v3m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z"
|
|
/>
|
|
</svg>
|
|
</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>
|
|
)
|
|
}
|