82 lines
2.9 KiB
TypeScript
82 lines
2.9 KiB
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import { useState } from "react";
|
||
|
|
import Link from "next/link";
|
||
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
||
|
|
import { Loader2 } 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 ResetPasswordForm() {
|
||
|
|
const router = useRouter();
|
||
|
|
const params = useSearchParams();
|
||
|
|
const token = params.get("token") ?? "";
|
||
|
|
const errorParam = params.get("error");
|
||
|
|
const [loading, setLoading] = useState(false);
|
||
|
|
|
||
|
|
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
|
||
|
|
e.preventDefault();
|
||
|
|
const form = new FormData(e.currentTarget);
|
||
|
|
const newPassword = String(form.get("password"));
|
||
|
|
const confirm = String(form.get("confirm"));
|
||
|
|
if (newPassword !== confirm) {
|
||
|
|
toast.error("Passwords don't match");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
setLoading(true);
|
||
|
|
const { error } = await authClient.resetPassword({ newPassword, token });
|
||
|
|
setLoading(false);
|
||
|
|
if (error) {
|
||
|
|
toast.error(error.message ?? "Could not reset password");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
toast.success("Password updated. Please sign in.");
|
||
|
|
router.push("/sign-in");
|
||
|
|
}
|
||
|
|
|
||
|
|
if (errorParam || !token) {
|
||
|
|
return (
|
||
|
|
<Card className="rounded-3xl shadow-md">
|
||
|
|
<CardHeader className="pb-2">
|
||
|
|
<CardTitle className="text-2xl">Invalid or expired link</CardTitle>
|
||
|
|
<CardDescription>Please request a new password reset link.</CardDescription>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<Button asChild className="w-full">
|
||
|
|
<Link href="/forgot-password">Request new link</Link>
|
||
|
|
</Button>
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Card className="rounded-3xl shadow-md">
|
||
|
|
<CardHeader className="pb-2">
|
||
|
|
<CardTitle className="text-2xl">Set a new password</CardTitle>
|
||
|
|
<CardDescription>Choose a strong password you don't use elsewhere.</CardDescription>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<form onSubmit={onSubmit} className="space-y-4">
|
||
|
|
<div className="space-y-2">
|
||
|
|
<Label htmlFor="password">New password</Label>
|
||
|
|
<Input id="password" name="password" type="password" minLength={8} required />
|
||
|
|
</div>
|
||
|
|
<div className="space-y-2">
|
||
|
|
<Label htmlFor="confirm">Confirm password</Label>
|
||
|
|
<Input id="confirm" name="confirm" type="password" minLength={8} required />
|
||
|
|
</div>
|
||
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
||
|
|
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
|
||
|
|
Update password
|
||
|
|
</Button>
|
||
|
|
</form>
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
);
|
||
|
|
}
|