107 lines
3.2 KiB
JavaScript
107 lines
3.2 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { Link, useNavigate } from 'react-router-dom';
|
|
|
|
export default function LoginPage({ onLogin }) {
|
|
const navigate = useNavigate();
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
setLoading(true);
|
|
|
|
try {
|
|
// Mock login - replace with Supabase auth
|
|
if (email && password) {
|
|
// Simulate API call
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
|
|
// For demo, accept any valid-looking email
|
|
if (email.includes('@') && password.length >= 6) {
|
|
onLogin?.({ email });
|
|
navigate('/app');
|
|
} else {
|
|
setError('Invalid email or password');
|
|
}
|
|
}
|
|
} catch (err) {
|
|
setError('An error occurred. Please try again.');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="auth-page">
|
|
<div className="auth-container">
|
|
<div className="auth-header">
|
|
<Link to="/" className="auth-brand">
|
|
<span className="brand-icon">◈</span>
|
|
<span>AeThex Connect</span>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="auth-card">
|
|
<h1>Welcome back!</h1>
|
|
<p className="auth-subtitle">We're so excited to see you again!</p>
|
|
|
|
{error && (
|
|
<div className="auth-error">
|
|
<span>⚠️</span>
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit} className="auth-form">
|
|
<div className="form-group">
|
|
<label htmlFor="email">EMAIL OR USERNAME <span className="required">*</span></label>
|
|
<input
|
|
id="email"
|
|
type="text"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
autoComplete="email"
|
|
disabled={loading}
|
|
/>
|
|
</div>
|
|
|
|
<div className="form-group">
|
|
<label htmlFor="password">PASSWORD <span className="required">*</span></label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
autoComplete="current-password"
|
|
disabled={loading}
|
|
/>
|
|
<Link to="/forgot-password" className="forgot-link">Forgot your password?</Link>
|
|
</div>
|
|
|
|
<button type="submit" className="auth-submit" disabled={loading}>
|
|
{loading ? 'Logging in...' : 'Log In'}
|
|
</button>
|
|
</form>
|
|
|
|
<p className="auth-switch">
|
|
Need an account? <Link to="/register">Register</Link>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="auth-footer">
|
|
<Link to="/">← Back to home</Link>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="auth-background">
|
|
<div className="bg-gradient"></div>
|
|
<div className="bg-pattern"></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|