Files
fiberops-web-admin/src/app/login/page.tsx
2026-04-13 09:36:43 +08:00

79 lines
2.6 KiB
TypeScript

'use client';
import { useState } from 'react';
import { useRouter } from 'next/navigation';
import { useAuthStore } from '@/lib/auth';
export default function LoginPage() {
const router = useRouter();
const login = useAuthStore((s) => s.login);
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
setLoading(true);
try {
await login(email, password);
router.push('/');
} catch (err: any) {
setError(err.response?.data?.error || 'Invalid credentials');
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-surface-50">
<div className="w-full max-w-sm p-8 bg-white rounded-xl shadow-lg border border-surface-200">
<div className="text-center mb-8">
<h1 className="text-2xl font-bold text-surface-900">FiberOps</h1>
<p className="text-sm text-surface-500 mt-1">Platform Administration</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
{error && (
<div className="p-3 text-sm text-red-700 bg-red-50 rounded-lg border border-red-200">
{error}
</div>
)}
<div>
<label className="block text-sm font-medium text-surface-700 mb-1">Email</label>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="w-full px-3 py-2 border border-surface-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500"
placeholder="superadmin@fiberops.dev"
required
/>
</div>
<div>
<label className="block text-sm font-medium text-surface-700 mb-1">Password</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full px-3 py-2 border border-surface-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500"
required
/>
</div>
<button
type="submit"
disabled={loading}
className="w-full py-2 px-4 bg-primary-600 text-white rounded-lg hover:bg-primary-700 disabled:opacity-50 font-medium"
>
{loading ? 'Signing in...' : 'Sign In'}
</button>
</form>
</div>
</div>
);
}