import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/components/ui/field"; import { Input } from "@/components/ui/input"; export function LoginForm({ className, action, error, ...props }: React.ComponentProps<"div"> & { action?: React.ComponentProps<"form">["action"]; error?: string; }) { return (
管理员登录 使用管理员账号密码进入 Wallora 后台
Email Password {error ? ( {error} ) : null}
后台仅限授权管理员访问。登录状态由 NextAuth session 保存。
); }