mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
106 lines
3.6 KiB
TypeScript
106 lines
3.6 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useAuthStore } from '@/lib/auth-store';
|
|
import { Train } from 'lucide-react';
|
|
|
|
export default function LoginPage() {
|
|
const [email, setEmail] = useState('admin@edr-platform.com');
|
|
const [password, setPassword] = useState('admin123');
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState('');
|
|
const router = useRouter();
|
|
const { login } = useAuthStore();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
setError('');
|
|
|
|
try {
|
|
await login(email, password);
|
|
router.push('/dashboard');
|
|
} catch (err: any) {
|
|
const message = err.response?.data?.message || err.message || 'Login failed. Please check your credentials.';
|
|
setError(message);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex min-h-screen">
|
|
{/* Banner Image Side */}
|
|
<div className="hidden lg:flex lg:w-1/2 relative bg-gradient-to-br from-[rgb(20,113,76)] to-[rgb(15,85,57)] items-center justify-center">
|
|
<div className="absolute inset-0 bg-[url('/banner.jpg')] bg-cover bg-center opacity-20"></div>
|
|
<div className="relative z-10 text-center px-12">
|
|
<div className="flex justify-center mb-6">
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-2xl bg-white/10 backdrop-blur-sm shadow-2xl">
|
|
<Train className="h-12 w-12 text-white" />
|
|
</div>
|
|
</div>
|
|
<h1 className="text-5xl font-bold text-white mb-4">EDR</h1>
|
|
<p className="text-lg text-white/80">Passenger Back-office</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Login Form Side */}
|
|
<div className="flex w-full lg:w-1/2 items-center justify-center bg-gray-100 dark:bg-gray-900 p-8">
|
|
<div className="w-full max-w-md">
|
|
<div className="card">
|
|
<div className="mb-6">
|
|
<div className="mb-4 flex justify-center lg:hidden">
|
|
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-[rgb(20,113,76)] shadow-lg">
|
|
<Train className="h-6 w-6 text-white" />
|
|
</div>
|
|
<div className="text-4xl font-bold text-gray-900 dark:text-white ps-4">EDR</div>
|
|
</div>
|
|
<h2 className="text-2xl font-bold text-gray-900 dark:text-white">Sign in to get started.</h2>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="mb-4 rounded-lg bg-red-50 dark:bg-red-900/20 p-4 text-sm text-red-800 dark:text-red-200">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div>
|
|
<label className="label">Email</label>
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="input"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="label">Password</label>
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="input"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="btn btn-primary w-full disabled:opacity-50"
|
|
>
|
|
{loading ? 'Signing in...' : 'Sign In'}
|
|
</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|