101 lines
2.9 KiB
TypeScript
101 lines
2.9 KiB
TypeScript
"use client";
|
||
|
||
import { useState } from "react";
|
||
import Link from "next/link";
|
||
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 { api } from "@/lib/api";
|
||
|
||
export default function ForgotPasswordPage() {
|
||
const [email, setEmail] = useState("");
|
||
const [error, setError] = useState("");
|
||
const [loading, setLoading] = useState(false);
|
||
const [success, setSuccess] = useState(false);
|
||
|
||
const handleSubmit = async (e: React.FormEvent) => {
|
||
e.preventDefault();
|
||
setLoading(true);
|
||
setError("");
|
||
try {
|
||
await api.auth.forgotPassword(email);
|
||
setSuccess(true);
|
||
} catch (err: unknown) {
|
||
const message = err instanceof Error ? err.message : "请求失败";
|
||
setError(message);
|
||
} finally {
|
||
setLoading(false);
|
||
}
|
||
};
|
||
|
||
if (success) {
|
||
return (
|
||
<Card className="w-full max-w-md">
|
||
<CardHeader className="space-y-1">
|
||
<CardTitle className="text-2xl">重置链接已发送</CardTitle>
|
||
<CardDescription>重置链接已发送到您的邮箱,请查收</CardDescription>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<p className="text-sm text-muted-foreground">
|
||
如果您没有收到邮件,请检查垃圾邮件文件夹或稍后再试。
|
||
</p>
|
||
</CardContent>
|
||
<CardFooter>
|
||
<Link
|
||
href="/login"
|
||
className="text-sm text-primary hover:underline"
|
||
>
|
||
返回登录
|
||
</Link>
|
||
</CardFooter>
|
||
</Card>
|
||
);
|
||
}
|
||
|
||
return (
|
||
<Card className="w-full max-w-md">
|
||
<CardHeader className="space-y-1">
|
||
<CardTitle className="text-2xl">忘记密码</CardTitle>
|
||
<CardDescription>输入您的邮箱地址,我们将发送重置链接</CardDescription>
|
||
</CardHeader>
|
||
<form onSubmit={handleSubmit}>
|
||
<CardContent className="space-y-4">
|
||
{error && (
|
||
<p className="text-sm text-destructive">{error}</p>
|
||
)}
|
||
<div className="space-y-2">
|
||
<Label htmlFor="email">邮箱</Label>
|
||
<Input
|
||
id="email"
|
||
type="email"
|
||
placeholder="name@example.com"
|
||
value={email}
|
||
onChange={(e) => setEmail(e.target.value)}
|
||
required
|
||
/>
|
||
</div>
|
||
</CardContent>
|
||
<CardFooter className="flex flex-col space-y-4">
|
||
<Button type="submit" className="w-full" disabled={loading}>
|
||
{loading ? "发送中..." : "发送重置链接"}
|
||
</Button>
|
||
<Link
|
||
href="/login"
|
||
className="text-sm text-primary hover:underline"
|
||
>
|
||
返回登录
|
||
</Link>
|
||
</CardFooter>
|
||
</form>
|
||
</Card>
|
||
);
|
||
}
|