All checks were successful
Deploy / deploy (push) Successful in 11s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
249 lines
10 KiB
JavaScript
249 lines
10 KiB
JavaScript
import { useState, useEffect } from 'react'
|
|
import { useNavigate } from 'react-router-dom'
|
|
import { useAuth } from '../contexts/AuthContext'
|
|
import { useLanguage } from '../i18n/LanguageContext'
|
|
import { Megaphone, Lock, Mail, AlertCircle, User, CheckCircle } from 'lucide-react'
|
|
import { api } from '../utils/api'
|
|
|
|
export default function Login() {
|
|
const navigate = useNavigate()
|
|
const { login } = useAuth()
|
|
const { t } = useLanguage()
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
const [error, setError] = useState('')
|
|
|
|
const [needsSetup, setNeedsSetup] = useState(null)
|
|
const [setupName, setSetupName] = useState('')
|
|
const [setupEmail, setSetupEmail] = useState('')
|
|
const [setupPassword, setSetupPassword] = useState('')
|
|
const [setupDone, setSetupDone] = useState(false)
|
|
|
|
useEffect(() => {
|
|
api.get('/setup/status').then(data => setNeedsSetup(data.needsSetup)).catch(() => setNeedsSetup(false))
|
|
}, [])
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
setLoading(true)
|
|
|
|
try {
|
|
await login(email, password)
|
|
navigate('/')
|
|
} catch (err) {
|
|
setError(err.message || 'Invalid email or password')
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
const handleSetup = async (e) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
setLoading(true)
|
|
|
|
try {
|
|
await api.post('/setup', { name: setupName, email: setupEmail, password: setupPassword })
|
|
setSetupDone(true)
|
|
setNeedsSetup(false)
|
|
setEmail(setupEmail)
|
|
} catch (err) {
|
|
setError(err.message || 'Setup failed')
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
if (needsSetup === null) {
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-slate-900 via-blue-900 to-slate-900 flex items-center justify-center">
|
|
<div className="w-8 h-8 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-slate-900 via-blue-900 to-slate-900 flex items-center justify-center px-4">
|
|
<div className="w-full max-w-md">
|
|
{/* Logo & Title */}
|
|
<div className="text-center mb-8">
|
|
<div className="w-16 h-16 bg-gradient-to-br from-blue-500 to-purple-600 rounded-2xl flex items-center justify-center mx-auto mb-4 shadow-lg">
|
|
<Megaphone className="w-8 h-8 text-white" />
|
|
</div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">
|
|
{needsSetup ? 'Initial Setup' : t('login.title')}
|
|
</h1>
|
|
<p className="text-slate-400">
|
|
{needsSetup ? 'Create your superadmin account to get started' : t('login.subtitle')}
|
|
</p>
|
|
</div>
|
|
|
|
{/* Success Message */}
|
|
{setupDone && (
|
|
<div className="flex items-center gap-2 p-3 mb-4 bg-green-500/10 border border-green-500/30 rounded-lg">
|
|
<CheckCircle className="w-5 h-5 text-green-400 shrink-0" />
|
|
<p className="text-sm text-green-400">Account created. You can now log in.</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Card */}
|
|
<div className="bg-slate-800/50 backdrop-blur-sm rounded-2xl border border-slate-700/50 p-8 shadow-2xl">
|
|
{needsSetup ? (
|
|
<form onSubmit={handleSetup} className="space-y-5">
|
|
{/* Name */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">Name</label>
|
|
<div className="relative">
|
|
<User className="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="text"
|
|
value={setupName}
|
|
onChange={(e) => setSetupName(e.target.value)}
|
|
className="w-full pl-11 pr-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="Your name"
|
|
required
|
|
autoFocus
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Email */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">Email</label>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="email"
|
|
value={setupEmail}
|
|
onChange={(e) => setSetupEmail(e.target.value)}
|
|
dir="auto"
|
|
className="w-full pl-11 pr-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="admin@company.com"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Password */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">Password</label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="password"
|
|
value={setupPassword}
|
|
onChange={(e) => setSetupPassword(e.target.value)}
|
|
className="w-full pl-11 pr-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="Choose a strong password"
|
|
required
|
|
minLength={6}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error */}
|
|
{error && (
|
|
<div className="flex items-center gap-2 p-3 bg-red-500/10 border border-red-500/30 rounded-lg">
|
|
<AlertCircle className="w-5 h-5 text-red-400 shrink-0" />
|
|
<p className="text-sm text-red-400">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Submit */}
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full py-3 bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? (
|
|
<span className="flex items-center justify-center gap-2">
|
|
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
Creating account...
|
|
</span>
|
|
) : (
|
|
'Create Superadmin Account'
|
|
)}
|
|
</button>
|
|
</form>
|
|
) : (
|
|
<form onSubmit={handleSubmit} className="space-y-5">
|
|
{/* Email */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">
|
|
{t('auth.email')}
|
|
</label>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
dir="auto"
|
|
className="w-full pl-11 pr-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="user@company.com"
|
|
required
|
|
autoFocus
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Password */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">
|
|
{t('auth.password')}
|
|
</label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="w-full pl-11 pr-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="••••••••"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error */}
|
|
{error && (
|
|
<div className="flex items-center gap-2 p-3 bg-red-500/10 border border-red-500/30 rounded-lg">
|
|
<AlertCircle className="w-5 h-5 text-red-400 shrink-0" />
|
|
<p className="text-sm text-red-400">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Submit */}
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full py-3 bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? (
|
|
<span className="flex items-center justify-center gap-2">
|
|
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
{t('auth.signingIn')}
|
|
</span>
|
|
) : (
|
|
t('auth.loginBtn')
|
|
)}
|
|
</button>
|
|
</form>
|
|
)}
|
|
|
|
{/* Footer */}
|
|
{!needsSetup && (
|
|
<div className="mt-6 pt-6 border-t border-slate-700/50">
|
|
<p className="text-xs text-slate-500 text-center">
|
|
{t('login.forgotPassword')}
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|