Spaces:
Running
Running
File size: 11,160 Bytes
b0b150b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
import React, { useState } from 'react';
import { useNavigate, Link } from 'react-router-dom';
import { useAuth } from '../contexts/AuthContext';
import {
Box,
Typography,
Container,
IconButton,
CircularProgress,
Fade
} from '@mui/material';
import {
Email as EmailIcon,
Lock as LockIcon,
Visibility,
VisibilityOff,
ArrowForward,
Diamond as DiamondIcon
} from '@mui/icons-material';
const Login = () => {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [showPassword, setShowPassword] = useState(false);
const [rememberMe, setRememberMe] = useState(false);
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const { login } = useAuth();
const navigate = useNavigate();
// Load remembered email on mount
React.useEffect(() => {
const savedEmail = localStorage.getItem('rememberedEmail');
if (savedEmail) {
setEmail(savedEmail);
setRememberMe(true);
}
}, []);
const handleSubmit = async (e) => {
e.preventDefault();
setError('');
setLoading(true);
try {
await login(email, password);
// Save or remove email based on Remember Me
if (rememberMe) {
localStorage.setItem('rememberedEmail', email);
} else {
localStorage.removeItem('rememberedEmail');
}
navigate('/dashboard');
} catch (err) {
setError('Invalid email or password');
} finally {
setLoading(false);
}
};
return (
<Box sx={{ position: 'relative', minHeight: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
{/* Animated Background */}
<div className="animated-bg">
<div className="orb orb-1" />
<div className="orb orb-2" />
<div className="orb orb-3" />
</div>
<Container maxWidth="xs" sx={{ position: 'relative', zIndex: 10 }}>
<Fade in timeout={800}>
<Box className="glass-card" sx={{ p: 5, textAlign: 'center' }}>
{/* Logo / Header */}
<Box sx={{ mb: 4 }}>
<Box sx={{
width: 60,
height: 60,
borderRadius: '20px',
background: 'linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
margin: '0 auto',
mb: 2,
boxShadow: '0 0 20px rgba(139, 92, 246, 0.4)'
}}>
<DiamondIcon sx={{ fontSize: '32px', color: 'white' }} />
</Box>
<Typography variant="h4" fontWeight="bold" className="text-gradient">
MEXAR Ultimate
</Typography>
<Typography variant="body2" color="text.secondary" sx={{ mt: 1 }}>
Enter your credentials to access the ultimate reasoning engine
</Typography>
</Box>
{/* Form */}
<form onSubmit={handleSubmit}>
{/* Email Input */}
<Box sx={{ mb: 3, textAlign: 'left' }}>
<Typography variant="caption" sx={{ color: 'text.secondary', ml: 1, mb: 0.5, display: 'block' }}>
EMAIL ADDRESS
</Typography>
<Box sx={{ position: 'relative' }}>
<input
type="email"
className="premium-input"
style={{ width: '100%', padding: '14px 16px 14px 44px', outline: 'none', fontSize: '1rem' }}
placeholder="name@company.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
/>
<EmailIcon sx={{ position: 'absolute', left: 14, top: 14, color: 'text.secondary', fontSize: 20 }} />
</Box>
</Box>
{/* Password Input */}
<Box sx={{ mb: 4, textAlign: 'left' }}>
<Typography variant="caption" sx={{ color: 'text.secondary', ml: 1, mb: 0.5, display: 'block' }}>
PASSWORD
</Typography>
<Box sx={{ position: 'relative' }}>
<input
type={showPassword ? "text" : "password"}
className="premium-input"
style={{ width: '100%', padding: '14px 44px 14px 44px', outline: 'none', fontSize: '1rem' }}
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
<LockIcon sx={{ position: 'absolute', left: 14, top: 14, color: 'text.secondary', fontSize: 20 }} />
<IconButton
onClick={() => setShowPassword(!showPassword)}
sx={{ position: 'absolute', right: 8, top: 8, color: 'text.secondary' }}
size="small"
>
{showPassword ? <VisibilityOff fontSize="small" /> : <Visibility fontSize="small" />}
</IconButton>
</Box>
</Box>
{/* Remember Me & Forgot Password */}
<Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', mb: 3 }}>
<Box
sx={{ display: 'flex', alignItems: 'center', cursor: 'pointer' }}
onClick={() => setRememberMe(!rememberMe)}
>
<Box
sx={{
width: 18,
height: 18,
borderRadius: '4px',
border: rememberMe ? 'none' : '2px solid rgba(255,255,255,0.3)',
background: rememberMe ? 'linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%)' : 'transparent',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
mr: 1,
transition: 'all 0.2s ease'
}}
>
{rememberMe && (
<Typography sx={{ color: 'white', fontSize: '12px', fontWeight: 'bold' }}>✓</Typography>
)}
</Box>
<Typography variant="body2" sx={{ color: 'text.secondary', userSelect: 'none' }}>
Remember me
</Typography>
</Box>
<Link to="/forgot-password" style={{ color: 'var(--primary)', textDecoration: 'none', fontSize: '0.875rem' }}>
Forgot password?
</Link>
</Box>
{/* Error Message */}
{error && (
<Fade in>
<Typography color="error" variant="body2" sx={{ mb: 2, bgcolor: 'rgba(239, 68, 68, 0.1)', p: 1, borderRadius: 1 }}>
⚠️ {error}
</Typography>
</Fade>
)}
{/* Submit Button */}
<button
type="submit"
className="btn-primary"
style={{
width: '100%',
padding: '16px',
fontSize: '1rem',
fontWeight: 600,
cursor: loading ? 'not-allowed' : 'pointer',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '8px'
}}
disabled={loading}
>
{loading ? <CircularProgress size={24} color="inherit" /> : (
<>
Sign In <ArrowForward sx={{ fontSize: 20 }} />
</>
)}
</button>
</form>
{/* Footer */}
<Box sx={{ mt: 4 }}>
<Typography variant="body2" color="text.secondary">
New here? {' '}
<Link to="/register" style={{ color: 'var(--primary)', textDecoration: 'none', fontWeight: 600 }}>
Create an account
</Link>
</Typography>
</Box>
</Box>
</Fade>
</Container>
</Box>
);
};
export default Login;
|