140 lines
4.8 KiB
JavaScript
140 lines
4.8 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { useNavigate, Link } from 'react-router-dom';
|
|
import { useAuth } from '../context/AuthContext';
|
|
import { Button } from '../components/ui/button';
|
|
import { Input } from '../components/ui/input';
|
|
import { PasswordInput } from '../components/ui/password-input';
|
|
import { Label } from '../components/ui/label';
|
|
import { Card } from '../components/ui/card';
|
|
import { toast } from 'sonner';
|
|
import PublicNavbar from '../components/PublicNavbar';
|
|
import PublicFooter from '../components/PublicFooter';
|
|
import { ArrowRight, ArrowLeft } from 'lucide-react';
|
|
|
|
const Login = () => {
|
|
const navigate = useNavigate();
|
|
const { login } = useAuth();
|
|
const [loading, setLoading] = useState(false);
|
|
const [formData, setFormData] = useState({
|
|
email: '',
|
|
password: ''
|
|
});
|
|
|
|
const handleInputChange = (e) => {
|
|
const { name, value } = e.target;
|
|
setFormData(prev => ({ ...prev, [name]: value }));
|
|
};
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
|
|
try {
|
|
const user = await login(formData.email, formData.password);
|
|
toast.success('Login successful!');
|
|
|
|
// Check if password change is required
|
|
if (user.force_password_change) {
|
|
toast.warning('You must change your password before continuing', {
|
|
duration: 5000
|
|
});
|
|
navigate('/change-password-required');
|
|
return;
|
|
}
|
|
|
|
if (user.role === 'admin' || user.role === 'superadmin') {
|
|
navigate('/admin');
|
|
} else {
|
|
navigate('/dashboard');
|
|
}
|
|
} catch (error) {
|
|
toast.error(error.response?.data?.detail || 'Login failed. Please check your credentials.');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-white">
|
|
<PublicNavbar />
|
|
|
|
<div className="max-w-md mx-auto px-6 py-12">
|
|
<div className="mb-8">
|
|
<Link to="/" className="inline-flex items-center text-[#664fa3] hover:text-[#ff9e77] transition-colors">
|
|
<ArrowLeft className="h-4 w-4 mr-2" />
|
|
Back to Home
|
|
</Link>
|
|
</div>
|
|
|
|
<Card className="p-8 md:p-12 bg-white rounded-2xl border border-[#ddd8eb] shadow-lg">
|
|
<div className="mb-8 text-center">
|
|
<h1 className="text-4xl md:text-5xl font-semibold text-[#422268] mb-4" style={{ fontFamily: "'Inter', sans-serif" }}>
|
|
Welcome Back
|
|
</h1>
|
|
<p className="text-lg text-[#664fa3]" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
Login to access your member dashboard.
|
|
</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6" data-testid="login-form">
|
|
<div>
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
required
|
|
value={formData.email}
|
|
onChange={handleInputChange}
|
|
placeholder="your.email@example.com"
|
|
className="h-14 rounded-xl border-2 border-[#ddd8eb] focus:border-[#664fa3]"
|
|
data-testid="login-email-input"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<div className="flex items-center justify-between mb-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Link to="/forgot-password" className="text-sm text-[#ff9e77] hover:underline">
|
|
Forgot password?
|
|
</Link>
|
|
</div>
|
|
<PasswordInput
|
|
id="password"
|
|
name="password"
|
|
required
|
|
value={formData.password}
|
|
onChange={handleInputChange}
|
|
placeholder="Enter your password"
|
|
className="h-14 rounded-xl border-2 border-[#ddd8eb] focus:border-[#664fa3]"
|
|
data-testid="login-password-input"
|
|
/>
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-[#DDD8EB] text-[#422268] hover:bg-white rounded-full py-6 text-lg font-medium shadow-lg hover:scale-105 transition-transform disabled:opacity-50"
|
|
data-testid="login-submit-button"
|
|
>
|
|
{loading ? 'Logging in...' : 'Login'}
|
|
<ArrowRight className="ml-2 h-5 w-5" />
|
|
</Button>
|
|
|
|
<p className="text-center text-[#664fa3]" style={{ fontFamily: "'Nunito Sans', sans-serif" }}>
|
|
Don't have an account?{' '}
|
|
<Link to="/register" className="text-[#ff9e77] hover:underline font-medium">
|
|
Register here
|
|
</Link>
|
|
</p>
|
|
</form>
|
|
</Card>
|
|
</div>
|
|
|
|
<PublicFooter />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Login;
|