80 lines
3.0 KiB
TypeScript
80 lines
3.0 KiB
TypeScript
"use client";
|
|
|
|
import { useState, Suspense } from "react";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
import { toast } from "sonner";
|
|
import { useTranslations } from "next-intl";
|
|
import { authClient } from "@/lib/auth/client";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import Link from "next/link";
|
|
|
|
function ResetPasswordForm() {
|
|
const router = useRouter();
|
|
const t = useTranslations("auth");
|
|
const searchParams = useSearchParams();
|
|
const token = searchParams.get("token") ?? "";
|
|
const [password, setPassword] = useState("");
|
|
const [confirm, setConfirm] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
async function handleSubmit(e: React.FormEvent<HTMLFormElement>) {
|
|
e.preventDefault();
|
|
if (password !== confirm) { toast.error("Passwords don't match"); return; }
|
|
setLoading(true);
|
|
const { error } = await authClient.resetPassword({ newPassword: password, token });
|
|
setLoading(false);
|
|
if (error) {
|
|
toast.error(error.message ?? "Reset failed — link may have expired");
|
|
} else {
|
|
toast.success("Password updated");
|
|
router.push("/login");
|
|
}
|
|
}
|
|
|
|
if (!token) {
|
|
return <p className="text-sm text-muted-foreground p-6">{t("invalidToken")}</p>;
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit}>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">{t("newPassword")}</Label>
|
|
<Input id="password" type="password" value={password} onChange={(e) => setPassword(e.target.value)} required minLength={8} />
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="confirm">{t("confirmPassword")}</Label>
|
|
<Input id="confirm" type="password" value={confirm} onChange={(e) => setConfirm(e.target.value)} required minLength={8} />
|
|
</div>
|
|
<Button className="w-full" type="submit" disabled={loading}>
|
|
{loading ? t("updatingPassword") : t("updatePassword")}
|
|
</Button>
|
|
</CardContent>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
export default function ResetPasswordPage() {
|
|
const t = useTranslations("auth");
|
|
|
|
return (
|
|
<Card>
|
|
<CardHeader className="space-y-1">
|
|
<CardTitle className="text-2xl font-semibold tracking-tight">{t("resetPasswordTitle")}</CardTitle>
|
|
<CardDescription>{t("resetPasswordDescription")}</CardDescription>
|
|
</CardHeader>
|
|
<Suspense fallback={<CardContent><p className="text-sm text-muted-foreground">{t("updatingPassword")}</p></CardContent>}>
|
|
<ResetPasswordForm />
|
|
</Suspense>
|
|
<CardFooter className="flex justify-center">
|
|
<Link href="/login" className="text-sm text-muted-foreground underline underline-offset-4 hover:text-foreground">
|
|
{t("backToSignIn")}
|
|
</Link>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|