118 lines
3.9 KiB
TypeScript
118 lines
3.9 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { useState } from 'react';
|
||
|
|
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 { 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';
|
||
|
|
import { cn } from '@/lib/utils';
|
||
|
|
|
||
|
|
const resetSchema = z.object({
|
||
|
|
email: z.string().email('Please enter a valid email address'),
|
||
|
|
});
|
||
|
|
|
||
|
|
type ResetFormData = z.infer<typeof resetSchema>;
|
||
|
|
|
||
|
|
export default function ResetPasswordPage() {
|
||
|
|
const [submitted, setSubmitted] = useState(false);
|
||
|
|
const [isLoading, setIsLoading] = useState(false);
|
||
|
|
|
||
|
|
const {
|
||
|
|
register,
|
||
|
|
handleSubmit,
|
||
|
|
formState: { errors },
|
||
|
|
} = useForm<ResetFormData>({
|
||
|
|
resolver: zodResolver(resetSchema),
|
||
|
|
});
|
||
|
|
|
||
|
|
async function onSubmit(data: ResetFormData) {
|
||
|
|
setIsLoading(true);
|
||
|
|
try {
|
||
|
|
// Always show the same success message regardless of whether the email exists.
|
||
|
|
await fetch('/api/auth/reset-password', {
|
||
|
|
method: 'POST',
|
||
|
|
headers: { 'Content-Type': 'application/json' },
|
||
|
|
body: JSON.stringify({ email: data.email }),
|
||
|
|
});
|
||
|
|
|
||
|
|
setSubmitted(true);
|
||
|
|
} 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">Reset your password</p>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
{submitted ? (
|
||
|
|
<div className="space-y-4 text-center">
|
||
|
|
<div className="space-y-2">
|
||
|
|
<p className="font-medium text-foreground">Check your email</p>
|
||
|
|
<p className="text-sm text-muted-foreground">
|
||
|
|
If an account exists for that email address, we have sent a password reset link.
|
||
|
|
Please check your inbox and spam folder.
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
<Link
|
||
|
|
href="/login"
|
||
|
|
className="inline-block text-sm text-muted-foreground hover:text-foreground transition-colors"
|
||
|
|
>
|
||
|
|
Back to sign in
|
||
|
|
</Link>
|
||
|
|
</div>
|
||
|
|
) : (
|
||
|
|
<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>
|
||
|
|
|
||
|
|
<Button type="submit" className="w-full" disabled={isLoading}>
|
||
|
|
{isLoading ? 'Sending…' : 'Send reset link'}
|
||
|
|
</Button>
|
||
|
|
|
||
|
|
<p className="text-center text-sm text-muted-foreground">
|
||
|
|
Remember your password?{' '}
|
||
|
|
<Link
|
||
|
|
href="/login"
|
||
|
|
className="text-foreground underline-offset-4 hover:underline"
|
||
|
|
>
|
||
|
|
Sign in
|
||
|
|
</Link>
|
||
|
|
</p>
|
||
|
|
</form>
|
||
|
|
)}
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|