128 lines
3.9 KiB
TypeScript
128 lines
3.9 KiB
TypeScript
"use client";
|
||
|
||
import { useState } from "react";
|
||
import { useRouter } from "next/navigation";
|
||
import Link from "next/link";
|
||
import { signIn } from "next-auth/react";
|
||
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 RegisterPage() {
|
||
const router = useRouter();
|
||
const [name, setName] = useState("");
|
||
const [email, setEmail] = useState("");
|
||
const [password, setPassword] = useState("");
|
||
const [confirmPassword, setConfirmPassword] = useState("");
|
||
const [error, setError] = useState("");
|
||
const [loading, setLoading] = useState(false);
|
||
|
||
const handleSubmit = async (e: React.FormEvent) => {
|
||
e.preventDefault();
|
||
if (password !== confirmPassword) {
|
||
setError("两次输入的密码不一致");
|
||
return;
|
||
}
|
||
setLoading(true);
|
||
setError("");
|
||
try {
|
||
await api.auth.register({ name, email, password });
|
||
const result = await signIn("credentials", {
|
||
email,
|
||
password,
|
||
redirect: false,
|
||
});
|
||
if (result?.error) {
|
||
setError("注册成功但自动登录失败,请手动登录");
|
||
router.push("/login");
|
||
} else {
|
||
router.push(`/verify-email?email=${encodeURIComponent(email)}`);
|
||
}
|
||
} catch (err: unknown) {
|
||
const message = err instanceof Error ? err.message : "注册失败";
|
||
setError(message);
|
||
} finally {
|
||
setLoading(false);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<Card className="w-full max-w-md">
|
||
<CardHeader className="space-y-1">
|
||
<CardTitle className="text-2xl">注册</CardTitle>
|
||
<CardDescription>创建GEO平台账号</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="name">姓名</Label>
|
||
<Input
|
||
id="name"
|
||
placeholder="请输入姓名"
|
||
value={name}
|
||
onChange={(e) => setName(e.target.value)}
|
||
required
|
||
/>
|
||
</div>
|
||
<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>
|
||
<div className="space-y-2">
|
||
<Label htmlFor="password">密码</Label>
|
||
<Input
|
||
id="password"
|
||
type="password"
|
||
placeholder="请输入密码"
|
||
value={password}
|
||
onChange={(e) => setPassword(e.target.value)}
|
||
required
|
||
/>
|
||
</div>
|
||
<div className="space-y-2">
|
||
<Label htmlFor="confirmPassword">确认密码</Label>
|
||
<Input
|
||
id="confirmPassword"
|
||
type="password"
|
||
placeholder="请再次输入密码"
|
||
value={confirmPassword}
|
||
onChange={(e) => setConfirmPassword(e.target.value)}
|
||
required
|
||
/>
|
||
</div>
|
||
</CardContent>
|
||
<CardFooter className="flex flex-col space-y-4">
|
||
<Button type="submit" className="w-full" disabled={loading}>
|
||
{loading ? "注册中..." : "注册"}
|
||
</Button>
|
||
<p className="text-sm text-muted-foreground">
|
||
已有账号?{" "}
|
||
<Link href="/login" className="text-primary hover:underline">
|
||
立即登录
|
||
</Link>
|
||
</p>
|
||
</CardFooter>
|
||
</form>
|
||
</Card>
|
||
);
|
||
}
|