82 lines
2.7 KiB
TypeScript
82 lines
2.7 KiB
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { toast } from 'sonner';
|
|
import { Button } from '@/components/ui/button';
|
|
import InputField from '@/components/forms/InputField';
|
|
import FooterLink from '@/components/forms/FooterLink';
|
|
import OpenDevSocietyBranding from '@/components/OpenDevSocietyBranding';
|
|
import { requestPasswordResetEmail } from '@/lib/actions/auth.actions';
|
|
|
|
type ForgotPasswordFormData = {
|
|
email: string;
|
|
};
|
|
|
|
const ForgotPasswordPage = () => {
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<ForgotPasswordFormData>({
|
|
defaultValues: {
|
|
email: '',
|
|
},
|
|
mode: 'onBlur',
|
|
});
|
|
|
|
const onSubmit = async (data: ForgotPasswordFormData) => {
|
|
try {
|
|
const result = await requestPasswordResetEmail(data);
|
|
|
|
if (result.success) {
|
|
toast.success('If an account exists for that email, a reset link has been sent.');
|
|
return;
|
|
}
|
|
|
|
toast.error('Password reset unavailable', {
|
|
description: result.error ?? 'Unable to start password reset.',
|
|
});
|
|
} catch (error) {
|
|
toast.error('Password reset unavailable', {
|
|
description: error instanceof Error ? error.message : 'Unable to start password reset.',
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<h1 className="form-title">Forgot your password?</h1>
|
|
<p className="text-sm text-gray-400 mb-6">
|
|
Enter your email address and we'll send you a password reset link.
|
|
</p>
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-5">
|
|
<InputField
|
|
name="email"
|
|
label="Email"
|
|
placeholder="opendevsociety@cc.cc"
|
|
register={register}
|
|
error={errors.email}
|
|
validation={{
|
|
required: 'Email is required',
|
|
pattern: {
|
|
value: /^[\w-.]+@([\w-]+\.)+[\w-]{2,}$/,
|
|
message: 'Please enter a valid email address',
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Button type="submit" disabled={isSubmitting} className="yellow-btn w-full mt-5">
|
|
{isSubmitting ? 'Sending reset link' : 'Send reset link'}
|
|
</Button>
|
|
|
|
<FooterLink text="Remembered it?" linkText="Sign in" href="/sign-in" />
|
|
<OpenDevSocietyBranding outerClassName="mt-10 flex justify-center" />
|
|
</form>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ForgotPasswordPage;
|