2026-05-06 17:22:50 +08:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import { signIn } from "next-auth/react"
|
|
|
|
|
import { useState } from "react"
|
|
|
|
|
import { useRouter } from "next/navigation"
|
|
|
|
|
|
|
|
|
|
export default function LoginPage() {
|
|
|
|
|
const [username, setUsername] = useState("")
|
|
|
|
|
const [password, setPassword] = useState("")
|
|
|
|
|
const [error, setError] = useState("")
|
|
|
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
setLoading(true)
|
|
|
|
|
setError("")
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const result = await signIn("credentials", {
|
|
|
|
|
username,
|
|
|
|
|
password,
|
|
|
|
|
redirect: false,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if (result?.error) {
|
|
|
|
|
setError("用户名或密码错误")
|
|
|
|
|
} else {
|
|
|
|
|
router.push("/admin")
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
setError("登录失败,请稍后重试")
|
|
|
|
|
} finally {
|
|
|
|
|
setLoading(false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50">
|
|
|
|
|
<div className="max-w-md w-full space-y-8 p-8 bg-white rounded-2xl shadow-lg">
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
<div className="w-16 h-16 bg-blue-600 rounded-2xl flex items-center justify-center mx-auto mb-4">
|
|
|
|
|
<span className="text-white font-bold text-2xl">A</span>
|
|
|
|
|
</div>
|
|
|
|
|
<h2 className="text-3xl font-bold text-gray-900">后台管理</h2>
|
|
|
|
|
<p className="mt-2 text-gray-600">登录以管理智能体广场</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<form className="mt-8 space-y-6" onSubmit={handleSubmit}>
|
|
|
|
|
{error && (
|
|
|
|
|
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg text-sm">
|
|
|
|
|
{error}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label htmlFor="username" className="block text-sm font-medium text-gray-700 mb-2">
|
|
|
|
|
用户名
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
id="username"
|
|
|
|
|
type="text"
|
|
|
|
|
required
|
|
|
|
|
value={username}
|
|
|
|
|
onChange={(e) => setUsername(e.target.value)}
|
|
|
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
|
|
|
|
placeholder="请输入用户名"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label htmlFor="password" className="block text-sm font-medium text-gray-700 mb-2">
|
|
|
|
|
密码
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
id="password"
|
|
|
|
|
type="password"
|
|
|
|
|
required
|
|
|
|
|
value={password}
|
|
|
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
|
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
|
|
|
|
placeholder="请输入密码"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
type="submit"
|
|
|
|
|
disabled={loading}
|
|
|
|
|
className="w-full bg-blue-600 text-white py-3 rounded-lg font-medium hover:bg-blue-700 transition disabled:bg-blue-400"
|
|
|
|
|
>
|
|
|
|
|
{loading ? "登录中..." : "登录"}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div className="text-center text-sm text-gray-500">
|
2026-05-07 22:14:43 +08:00
|
|
|
{/* 默认账号: admin / admin123 */}
|
2026-05-06 17:22:50 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|