|
|
|
|
@ -88,6 +88,7 @@ export default function Login() {
|
|
|
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
|
|
|
placeholder="请输入邮箱"
|
|
|
|
|
required
|
|
|
|
|
autoComplete="email"
|
|
|
|
|
className="w-full bg-[#0a0a0a] border border-[#2a2a2a] rounded-lg pl-10 pr-4 py-3 text-white placeholder-[#666] outline-none focus:border-[#ff6b35] transition-colors"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
@ -104,6 +105,7 @@ export default function Login() {
|
|
|
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
|
|
|
placeholder="请输入密码"
|
|
|
|
|
required
|
|
|
|
|
autoComplete="current-password"
|
|
|
|
|
className="w-full bg-[#0a0a0a] border border-[#2a2a2a] rounded-lg pl-10 pr-12 py-3 text-white placeholder-[#666] outline-none focus:border-[#ff6b35] transition-colors"
|
|
|
|
|
/>
|
|
|
|
|
<button
|
|
|
|
|
|