174 lines
6.4 KiB
JavaScript
174 lines
6.4 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { Link, useNavigate, useLocation } from 'react-router-dom';
|
|
import { Mail, Lock, User, ArrowRight, Eye, EyeOff } from 'lucide-react';
|
|
import { Button } from '../components/ui/button';
|
|
import { Input } from '../components/ui/input';
|
|
import { Label } from '../components/ui/label';
|
|
import { Separator } from '../components/ui/separator';
|
|
import { useAuth } from '../context/AuthContext';
|
|
import { toast } from 'sonner';
|
|
|
|
const Login = () => {
|
|
const navigate = useNavigate();
|
|
const location = useLocation();
|
|
const { login, register } = useAuth();
|
|
const [isRegister, setIsRegister] = useState(false);
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const [formData, setFormData] = useState({
|
|
name: '',
|
|
email: '',
|
|
password: ''
|
|
});
|
|
|
|
const from = location.state?.from?.pathname || '/';
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
|
|
try {
|
|
if (isRegister) {
|
|
await register(formData.name, formData.email, formData.password);
|
|
toast.success('Account created successfully!');
|
|
} else {
|
|
await login(formData.email, formData.password);
|
|
toast.success('Welcome back!');
|
|
}
|
|
navigate(from, { replace: true });
|
|
} catch (error) {
|
|
toast.error(error.response?.data?.detail || 'Authentication failed');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center py-12 px-4">
|
|
<div className="w-full max-w-md">
|
|
<div className="text-center mb-8">
|
|
<Link to="/" className="inline-flex items-center gap-2 mb-8" data-testid="login-logo">
|
|
<div className="w-10 h-10 rounded-lg bg-primary flex items-center justify-center">
|
|
<span className="text-primary-foreground font-bold text-xl font-['Outfit']">T</span>
|
|
</div>
|
|
<span className="font-bold text-2xl tracking-tight font-['Outfit']">TechZone</span>
|
|
</Link>
|
|
<h1 className="text-2xl font-bold font-['Outfit'] mb-2">
|
|
{isRegister ? 'Create an account' : 'Welcome back'}
|
|
</h1>
|
|
<p className="text-muted-foreground">
|
|
{isRegister
|
|
? 'Enter your details to get started'
|
|
: 'Sign in to your account to continue'
|
|
}
|
|
</p>
|
|
</div>
|
|
|
|
<div className="border border-border rounded-2xl bg-card p-6 md:p-8">
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{isRegister && (
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Full Name</Label>
|
|
<div className="relative">
|
|
<User className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="name"
|
|
placeholder="John Doe"
|
|
className="pl-10"
|
|
value={formData.name}
|
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
|
required={isRegister}
|
|
data-testid="register-name"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="john@example.com"
|
|
className="pl-10"
|
|
value={formData.email}
|
|
onChange={(e) => setFormData({ ...formData, email: e.target.value })}
|
|
required
|
|
data-testid="login-email"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="password"
|
|
type={showPassword ? 'text' : 'password'}
|
|
placeholder="••••••••"
|
|
className="pl-10 pr-10"
|
|
value={formData.password}
|
|
onChange={(e) => setFormData({ ...formData, password: e.target.value })}
|
|
required
|
|
minLength={6}
|
|
data-testid="login-password"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground"
|
|
data-testid="toggle-password"
|
|
>
|
|
{showPassword ? <EyeOff className="h-4 w-4" /> : <Eye className="h-4 w-4" />}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
{!isRegister && (
|
|
<div className="flex justify-end">
|
|
<button
|
|
type="button"
|
|
className="text-sm text-primary hover:underline"
|
|
data-testid="forgot-password"
|
|
>
|
|
Forgot password?
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full rounded-full gap-2 btn-press"
|
|
size="lg"
|
|
disabled={loading}
|
|
data-testid="login-submit"
|
|
>
|
|
{loading ? 'Please wait...' : (isRegister ? 'Create Account' : 'Sign In')}
|
|
<ArrowRight className="h-4 w-4" />
|
|
</Button>
|
|
</form>
|
|
|
|
<Separator className="my-6" />
|
|
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
{isRegister ? 'Already have an account?' : "Don't have an account?"}{' '}
|
|
<button
|
|
type="button"
|
|
onClick={() => setIsRegister(!isRegister)}
|
|
className="text-primary hover:underline font-medium"
|
|
data-testid="toggle-auth-mode"
|
|
>
|
|
{isRegister ? 'Sign in' : 'Sign up'}
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Login;
|