1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
"use client";
import { useState } from "react";
import { useRouter } from "next/navigation";
import { ActionButton } from "@/components/ui/action-button";
import { Alert, AlertDescription } from "@/components/ui/alert";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import { Input } from "@/components/ui/input";
import { api } from "@/lib/trpc";
import { zodResolver } from "@hookform/resolvers/zod";
import { TRPCClientError } from "@trpc/client";
import { AlertCircle, CheckCircle } from "lucide-react";
import { useForm } from "react-hook-form";
import { z } from "zod";
const forgotPasswordSchema = z.object({
email: z.string().email("Please enter a valid email address"),
});
export default function ForgotPasswordForm() {
const [isSubmitted, setIsSubmitted] = useState(false);
const [errorMessage, setErrorMessage] = useState("");
const router = useRouter();
const form = useForm<z.infer<typeof forgotPasswordSchema>>({
resolver: zodResolver(forgotPasswordSchema),
});
const forgotPasswordMutation = api.users.forgotPassword.useMutation();
const onSubmit = async (values: z.infer<typeof forgotPasswordSchema>) => {
try {
setErrorMessage("");
await forgotPasswordMutation.mutateAsync(values);
setIsSubmitted(true);
} catch (error) {
if (error instanceof TRPCClientError) {
setErrorMessage(error.message);
} else {
setErrorMessage("An unexpected error occurred. Please try again.");
}
}
};
return (
<Card className="w-full">
<CardHeader className="text-center">
<CardTitle className="text-2xl font-bold">
{isSubmitted ? "Check your email" : "Forgot your password?"}
</CardTitle>
<CardDescription>
{isSubmitted
? "If an account with that email exists, we've sent you a password reset link."
: "Enter your email address and we'll send you a link to reset your password."}
</CardDescription>
</CardHeader>
<CardContent className="space-y-6">
{isSubmitted ? (
<>
<div className="flex items-center justify-center">
<CheckCircle className="h-12 w-12 text-green-600" />
</div>
<Alert>
<AlertDescription className="text-center">
If an account with that email exists, we've sent you a
password reset link.
</AlertDescription>
</Alert>
<ActionButton
variant="outline"
loading={false}
onClick={() => router.push("/signin")}
className="w-full"
>
Back to Sign In
</ActionButton>
</>
) : (
<>
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="space-y-4"
>
{errorMessage && (
<Alert variant="destructive">
<AlertCircle className="h-4 w-4" />
<AlertDescription>{errorMessage}</AlertDescription>
</Alert>
)}
<FormField
control={form.control}
name="email"
render={({ field }) => (
<FormItem>
<FormLabel>Email</FormLabel>
<FormControl>
<Input
type="email"
placeholder="Enter your email address"
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<ActionButton
type="submit"
loading={form.formState.isSubmitting}
className="w-full"
>
Send Reset Link
</ActionButton>
</form>
</Form>
<div className="text-center">
<ActionButton
variant="ghost"
loading={false}
onClick={() => router.push("/signin")}
className="w-full"
>
Back to Sign In
</ActionButton>
</div>
</>
)}
</CardContent>
</Card>
);
}
|