import type { FormEvent } from 'react' import { motion } from 'framer-motion' import { fadeUp, stagger } from './motion' import { TextField } from './ui/TextField' import { Button } from './ui/Button' // 右侧登录表单:纯 UI,暂无后端逻辑。 export function LoginForm() { const handleSubmit = (e: FormEvent) => { e.preventDefault() // TODO: 接入 Rust 后端鉴权 } return (

Sign in

Enter your details to continue.

Forgot password?
New here?{' '} Create an account
) }