128 lines
6.9 KiB
TypeScript
128 lines
6.9 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { useAuth } from '@/contexts/AuthContext';
|
|
import { useRouter } from 'next/navigation';
|
|
import { LockClosedIcon } from '@heroicons/react/24/outline';
|
|
|
|
export default function LoginPage() {
|
|
const [auth, setAuth] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [localError, setLocalError] = useState('');
|
|
|
|
const { login, isLoading, error, token } = useAuth();
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
if (token) {
|
|
router.push('/admin/dashboard');
|
|
}
|
|
}, [token, router]);
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setLocalError('');
|
|
|
|
if (!auth || !password) {
|
|
setLocalError('لطفاً همه فیلدها را پر کنید');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await login({ auth, password });
|
|
} catch (err) {
|
|
// Error is handled by context
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-gray-50 via-indigo-50/30 to-gray-100 dark:from-gray-950 dark:via-indigo-950/20 dark:to-gray-950 py-12 px-4 sm:px-6 lg:px-8">
|
|
{/* Decorative background */}
|
|
<div className="absolute inset-0 overflow-hidden pointer-events-none">
|
|
<div className="absolute -top-40 -right-40 w-80 h-80 bg-indigo-100 dark:bg-indigo-500/10 rounded-full blur-3xl opacity-60" />
|
|
<div className="absolute -bottom-40 -left-40 w-80 h-80 bg-indigo-100 dark:bg-indigo-500/10 rounded-full blur-3xl opacity-40" />
|
|
</div>
|
|
|
|
<div className="relative max-w-md w-full">
|
|
<div className="bg-white/80 dark:bg-gray-900/80 backdrop-blur-xl rounded-3xl shadow-xl shadow-gray-200/50 dark:shadow-black/30 ring-1 ring-gray-200/60 dark:ring-gray-800/60 p-8 space-y-8">
|
|
<div>
|
|
<div className="mx-auto h-16 w-16 rounded-2xl bg-gradient-to-br from-indigo-500 to-indigo-700 flex items-center justify-center mb-5 shadow-lg shadow-indigo-500/30">
|
|
<LockClosedIcon className="h-8 w-8 text-white" />
|
|
</div>
|
|
<h2 className="text-center text-2xl font-bold text-gray-900 dark:text-gray-100">
|
|
پنل ادمین
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-gray-500 dark:text-gray-400">
|
|
اپروایجنسی
|
|
</p>
|
|
</div>
|
|
|
|
<form className="space-y-5" onSubmit={handleSubmit}>
|
|
<div className="space-y-4">
|
|
<div>
|
|
<label htmlFor="auth" className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1.5">
|
|
ایمیل یا نام کاربری
|
|
</label>
|
|
<input
|
|
id="auth"
|
|
name="auth"
|
|
type="text"
|
|
required
|
|
className="block w-full px-4 py-3 border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800/80 placeholder-gray-400 dark:placeholder-gray-500 text-gray-900 dark:text-gray-100 rounded-xl focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent sm:text-sm transition-all duration-150 shadow-sm"
|
|
placeholder="example@email.com"
|
|
value={auth}
|
|
onChange={(e) => setAuth(e.target.value)}
|
|
disabled={isLoading}
|
|
dir="ltr"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="password" className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1.5">
|
|
رمز عبور
|
|
</label>
|
|
<input
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
required
|
|
className="block w-full px-4 py-3 border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800/80 placeholder-gray-400 dark:placeholder-gray-500 text-gray-900 dark:text-gray-100 rounded-xl focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent sm:text-sm transition-all duration-150 shadow-sm"
|
|
placeholder="••••••••"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
disabled={isLoading}
|
|
dir="ltr"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{(error || localError) && (
|
|
<div className="rounded-xl bg-red-50 dark:bg-red-950/40 ring-1 ring-red-200 dark:ring-red-800/60 p-4">
|
|
<p className="text-sm font-medium text-red-700 dark:text-red-300 text-center">
|
|
{localError || error}
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
disabled={isLoading}
|
|
className="relative w-full flex justify-center items-center py-3 px-4 border border-transparent text-sm font-semibold rounded-xl text-white bg-gradient-to-l from-indigo-600 to-indigo-700 hover:from-indigo-700 hover:to-indigo-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-900 disabled:opacity-50 disabled:cursor-not-allowed shadow-lg shadow-indigo-500/25 hover:shadow-xl hover:shadow-indigo-500/30 transition-all duration-150"
|
|
>
|
|
{isLoading ? (
|
|
<div className="flex items-center gap-2">
|
|
<div className="h-4 w-4 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
کمی صبر کنید...
|
|
</div>
|
|
) : (
|
|
'ورود'
|
|
)}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|