xpeditis2.0/apps/frontend/app/carrier/login/page.tsx
2025-12-05 13:55:40 +01:00

138 lines
4.7 KiB
TypeScript

'use client';
import { useState } from 'react';
import { useRouter } from 'next/navigation';
import { Ship, Mail, Lock, Loader2 } from 'lucide-react';
export default function CarrierLoginPage() {
const router = useRouter();
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setError(null);
try {
const response = await fetch('http://localhost:4000/api/v1/carrier-auth/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ email, password }),
});
if (!response.ok) {
throw new Error('Identifiants invalides');
}
const data = await response.json();
// Stocker le token
localStorage.setItem('carrier_access_token', data.accessToken);
localStorage.setItem('carrier_refresh_token', data.refreshToken);
// Rediriger vers le dashboard
router.push('/carrier/dashboard');
} catch (err: any) {
setError(err.message || 'Erreur de connexion');
} finally {
setLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50 to-blue-100">
<div className="bg-white p-8 rounded-lg shadow-xl max-w-md w-full">
{/* Header */}
<div className="text-center mb-8">
<Ship className="w-16 h-16 text-blue-600 mx-auto mb-4" />
<h1 className="text-3xl font-bold text-gray-900 mb-2">Portail Transporteur</h1>
<p className="text-gray-600">Connectez-vous à votre espace Xpeditis</p>
</div>
{/* Error Message */}
{error && (
<div className="bg-red-50 border border-red-200 rounded-lg p-4 mb-6">
<p className="text-red-800 text-sm">{error}</p>
</div>
)}
{/* Login Form */}
<form onSubmit={handleSubmit} className="space-y-6">
{/* Email */}
<div>
<label htmlFor="email" className="block text-sm font-medium text-gray-700 mb-2">
Email
</label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
<input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
className="pl-10 w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="votre@email.com"
/>
</div>
</div>
{/* Password */}
<div>
<label htmlFor="password" className="block text-sm font-medium text-gray-700 mb-2">
Mot de passe
</label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" />
<input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
className="pl-10 w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="••••••••"
/>
</div>
</div>
{/* Submit Button */}
<button
type="submit"
disabled={loading}
className="w-full bg-blue-600 text-white py-3 rounded-lg font-semibold hover:bg-blue-700 disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center"
>
{loading ? (
<>
<Loader2 className="w-5 h-5 animate-spin mr-2" />
Connexion...
</>
) : (
'Se connecter'
)}
</button>
</form>
{/* Footer Links */}
<div className="mt-6 text-center">
<a href="/carrier/forgot-password" className="text-blue-600 hover:text-blue-800 text-sm">
Mot de passe oublié ?
</a>
</div>
<div className="mt-4 text-center">
<p className="text-gray-600 text-sm">
Vous n'avez pas encore de compte ?<br />
<span className="text-blue-600 font-medium">
Un compte sera créé automatiquement lors de votre première acceptation de demande.
</span>
</p>
</div>
</div>
</div>
);
}