codigo0/admin-panel/src/pages/LoginPage.tsx

113 lines
3.9 KiB
TypeScript

/**
* Página de login
*/
import { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { useAuth } from '../contexts/AuthContext';
import { LogIn, AlertCircle } from 'lucide-react';
export default function LoginPage() {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [error, setError] = useState('');
const [isLoading, setIsLoading] = useState(false);
const { login } = useAuth();
const navigate = useNavigate();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
setIsLoading(true);
try {
await login({ email, password });
navigate('/dashboard');
} catch (err: any) {
setError(err.response?.data?.error || 'Error al iniciar sesión');
} finally {
setIsLoading(false);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-background p-4">
<div className="w-full max-w-md">
<div className="bg-card border border-border rounded-xl p-8 space-y-6">
{/* Header */}
<div className="text-center space-y-2">
<div className="w-16 h-16 bg-primary/20 rounded-xl flex items-center justify-center mx-auto">
<LogIn className="w-8 h-8 text-primary" />
</div>
<h1 className="text-2xl font-bold text-foreground">
Admin Panel
</h1>
<p className="text-muted-foreground">
EMERGES TES - Gestión de Contenido
</p>
</div>
{/* Form */}
<form onSubmit={handleSubmit} className="space-y-4">
{error && (
<div className="bg-destructive/10 border border-destructive/30 rounded-lg p-3 flex items-center gap-2 text-destructive">
<AlertCircle className="w-4 h-4" />
<span className="text-sm">{error}</span>
</div>
)}
<div>
<label htmlFor="email" className="block text-sm font-medium mb-1">
Email
</label>
<input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
className="w-full px-4 py-2 bg-background border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"
placeholder="admin@emerges-tes.local"
/>
</div>
<div>
<label htmlFor="password" className="block text-sm font-medium mb-1">
Contraseña
</label>
<input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
className="w-full px-4 py-2 bg-background border border-border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"
placeholder="••••••••"
/>
</div>
<button
type="submit"
disabled={isLoading}
className="w-full py-2.5 bg-primary text-primary-foreground rounded-lg font-medium hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
{isLoading ? 'Iniciando sesión...' : 'Iniciar Sesión'}
</button>
</form>
{/* Credenciales por defecto */}
<div className="pt-4 border-t border-border">
<p className="text-xs text-muted-foreground text-center">
Credenciales por defecto:
</p>
<p className="text-xs text-muted-foreground text-center mt-1">
admin@emerges-tes.local / Admin123!
</p>
</div>
</div>
</div>
</div>
);
}