79 lines
2.6 KiB
TypeScript
79 lines
2.6 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import Link from "next/link";
|
|
import { Loader2, MailCheck } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
|
|
import { authClient } from "@/lib/auth/auth-client";
|
|
|
|
export function ForgotPasswordForm() {
|
|
const [loading, setLoading] = useState(false);
|
|
const [sent, setSent] = useState(false);
|
|
|
|
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
const form = new FormData(e.currentTarget);
|
|
const { error } = await authClient.requestPasswordReset({
|
|
email: String(form.get("email")),
|
|
redirectTo: "/reset-password",
|
|
});
|
|
setLoading(false);
|
|
if (error) {
|
|
toast.error(error.message ?? "Something went wrong");
|
|
return;
|
|
}
|
|
setSent(true);
|
|
}
|
|
|
|
if (sent) {
|
|
return (
|
|
<Card className="rounded-3xl shadow-md">
|
|
<CardHeader className="pb-2">
|
|
<CardTitle className="flex items-center gap-2 text-2xl">
|
|
<MailCheck className="h-6 w-6 text-brand" /> Check your inbox
|
|
</CardTitle>
|
|
<CardDescription>
|
|
If an account exists for that email, we've sent a reset link.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Button asChild variant="outline" className="w-full">
|
|
<Link href="/sign-in">Back to sign in</Link>
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Card className="rounded-3xl shadow-md">
|
|
<CardHeader className="pb-2">
|
|
<CardTitle className="text-2xl">Forgot your password?</CardTitle>
|
|
<CardDescription>Enter your email and we'll send you a reset link.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={onSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input id="email" name="email" type="email" autoComplete="email" required />
|
|
</div>
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
|
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
|
|
Send reset link
|
|
</Button>
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
<Link href="/sign-in" className="font-semibold text-brand hover:underline">
|
|
Back to sign in
|
|
</Link>
|
|
</p>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|