119 lines
3.8 KiB
TypeScript
119 lines
3.8 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { useState } from 'react';
|
||
|
|
import { useRouter } from 'next/navigation';
|
||
|
|
import Link from 'next/link';
|
||
|
|
import { useForm } from 'react-hook-form';
|
||
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
||
|
|
import { z } from 'zod';
|
||
|
|
import { toast } from 'sonner';
|
||
|
|
import { authClient } from '@/lib/auth/client';
|
||
|
|
import { cn } from '@/lib/utils';
|
||
|
|
import { Button } from '@/components/ui/button';
|
||
|
|
import { Card, CardContent, CardHeader } from '@/components/ui/card';
|
||
|
|
import { Input } from '@/components/ui/input';
|
||
|
|
import { Label } from '@/components/ui/label';
|
||
|
|
|
||
|
|
const loginSchema = z.object({
|
||
|
|
email: z.string().email('Please enter a valid email address'),
|
||
|
|
password: z.string().min(1, 'Password is required'),
|
||
|
|
});
|
||
|
|
|
||
|
|
type LoginFormData = z.infer<typeof loginSchema>;
|
||
|
|
|
||
|
|
export default function LoginPage() {
|
||
|
|
const router = useRouter();
|
||
|
|
const [isLoading, setIsLoading] = useState(false);
|
||
|
|
|
||
|
|
const {
|
||
|
|
register,
|
||
|
|
handleSubmit,
|
||
|
|
formState: { errors },
|
||
|
|
} = useForm<LoginFormData>({
|
||
|
|
resolver: zodResolver(loginSchema),
|
||
|
|
});
|
||
|
|
|
||
|
|
async function onSubmit(data: LoginFormData) {
|
||
|
|
setIsLoading(true);
|
||
|
|
try {
|
||
|
|
const result = await authClient.signIn.email({
|
||
|
|
email: data.email,
|
||
|
|
password: data.password,
|
||
|
|
});
|
||
|
|
|
||
|
|
if (result.error) {
|
||
|
|
toast.error(result.error.message ?? 'Invalid email or password');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
router.push('/dashboard');
|
||
|
|
} catch {
|
||
|
|
toast.error('Something went wrong. Please try again.');
|
||
|
|
} finally {
|
||
|
|
setIsLoading(false);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
className="min-h-screen flex items-center justify-center px-4"
|
||
|
|
style={{ backgroundColor: '#1e2844' }}
|
||
|
|
>
|
||
|
|
<Card className="w-full max-w-md">
|
||
|
|
<CardHeader className="space-y-1 text-center pb-6">
|
||
|
|
<h1 className="text-2xl font-bold tracking-tight text-foreground">Port Nimara</h1>
|
||
|
|
<p className="text-sm text-muted-foreground">Marina CRM</p>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4" noValidate>
|
||
|
|
<div className="space-y-2">
|
||
|
|
<Label htmlFor="email">Email</Label>
|
||
|
|
<Input
|
||
|
|
id="email"
|
||
|
|
type="email"
|
||
|
|
autoComplete="email"
|
||
|
|
placeholder="you@example.com"
|
||
|
|
disabled={isLoading}
|
||
|
|
className={cn(errors.email && 'border-destructive focus-visible:ring-destructive')}
|
||
|
|
{...register('email')}
|
||
|
|
/>
|
||
|
|
{errors.email && (
|
||
|
|
<p className="text-sm text-destructive">{errors.email.message}</p>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="space-y-2">
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<Label htmlFor="password">Password</Label>
|
||
|
|
<Link
|
||
|
|
href="/reset-password"
|
||
|
|
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
|
||
|
|
>
|
||
|
|
Forgot password?
|
||
|
|
</Link>
|
||
|
|
</div>
|
||
|
|
<Input
|
||
|
|
id="password"
|
||
|
|
type="password"
|
||
|
|
autoComplete="current-password"
|
||
|
|
disabled={isLoading}
|
||
|
|
className={cn(
|
||
|
|
errors.password && 'border-destructive focus-visible:ring-destructive',
|
||
|
|
)}
|
||
|
|
{...register('password')}
|
||
|
|
/>
|
||
|
|
{errors.password && (
|
||
|
|
<p className="text-sm text-destructive">{errors.password.message}</p>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
||
|
|
{isLoading ? 'Signing in…' : 'Sign in'}
|
||
|
|
</Button>
|
||
|
|
</form>
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|