74 lines
2.4 KiB
JavaScript
74 lines
2.4 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { FiMail, FiLock } from 'react-icons/fi';
|
|
import { authAPI } from '../services/api';
|
|
|
|
const Login = ({ onLogin }) => {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [busy, setBusy] = useState(false);
|
|
|
|
const submit = async (e) => {
|
|
e.preventDefault();
|
|
setBusy(true); setError('');
|
|
try {
|
|
const me = await authAPI.login(email.trim().toLowerCase(), password);
|
|
onLogin(me);
|
|
} catch (err) {
|
|
setError(err.message);
|
|
} finally {
|
|
setBusy(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-gray-50 to-primary-50 p-6">
|
|
<div className="card w-full max-w-md">
|
|
<div className="text-center mb-6">
|
|
<h1 className="text-2xl font-bold text-gray-900">MailAdmin</h1>
|
|
<p className="text-sm text-gray-500 mt-1">Sign in to manage your mail server</p>
|
|
</div>
|
|
|
|
<form onSubmit={submit} className="space-y-4">
|
|
<div>
|
|
<label className="block text-sm font-semibold text-gray-700 mb-2">Email</label>
|
|
<div className="relative">
|
|
<FiMail className="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400 w-4 h-4" />
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="input-field pl-10"
|
|
required
|
|
autoFocus
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-semibold text-gray-700 mb-2">Password</label>
|
|
<div className="relative">
|
|
<FiLock className="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400 w-4 h-4" />
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="input-field pl-10"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{error && <p className="text-sm text-red-600">{error}</p>}
|
|
|
|
<button type="submit" disabled={busy} className="btn-primary w-full">
|
|
{busy ? 'Signing in...' : 'Sign in'}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Login;
|