2026-03-17 20:36:59 +03:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { useState } from 'react';
|
2026-05-25 21:27:39 +03:00
|
|
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
|
|
|
import { useRouter } from 'next/navigation';
|
2026-03-17 20:36:59 +03:00
|
|
|
import Link from 'next/link';
|
2026-05-25 21:27:39 +03:00
|
|
|
import toast, { Toaster } from 'react-hot-toast';
|
|
|
|
|
import { Mail, Key, Lock, CheckCircle, ArrowLeft, RefreshCw } from 'lucide-react';
|
|
|
|
|
import { requestForgetPasswordOtp, verifyForgetPasswordOtp } from '../utils/api';
|
2026-03-17 20:36:59 +03:00
|
|
|
|
|
|
|
|
export default function ForgotPasswordPage() {
|
2026-05-25 21:27:39 +03:00
|
|
|
const router = useRouter();
|
|
|
|
|
const [step, setStep] = useState(1);
|
2026-03-17 20:36:59 +03:00
|
|
|
const [email, setEmail] = useState('');
|
2026-05-25 21:27:39 +03:00
|
|
|
const [code, setCode] = useState('');
|
|
|
|
|
const [newPassword, setNewPassword] = useState('');
|
2026-03-17 20:36:59 +03:00
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
|
|
2026-05-25 21:27:39 +03:00
|
|
|
const handleRequestOtp = async (e) => {
|
2026-03-17 20:36:59 +03:00
|
|
|
e.preventDefault();
|
2026-05-25 21:27:39 +03:00
|
|
|
|
|
|
|
|
if (!email.trim()) {
|
|
|
|
|
toast.error('يرجى إدخال البريد الإلكتروني');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-17 20:36:59 +03:00
|
|
|
setIsLoading(true);
|
2026-05-25 21:27:39 +03:00
|
|
|
try {
|
|
|
|
|
await requestForgetPasswordOtp(email);
|
|
|
|
|
toast.success('تم إرسال رمز التحقق إلى بريدك الإلكتروني');
|
|
|
|
|
setStep(2);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
toast.error(err?.message || 'فشل إرسال رمز التحقق');
|
|
|
|
|
} finally {
|
2026-03-17 20:36:59 +03:00
|
|
|
setIsLoading(false);
|
2026-05-25 21:27:39 +03:00
|
|
|
}
|
2026-03-17 20:36:59 +03:00
|
|
|
};
|
|
|
|
|
|
2026-05-25 21:27:39 +03:00
|
|
|
const handleVerifyOtp = async (e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
if (!code.trim()) {
|
|
|
|
|
toast.error('يرجى إدخال رمز التحقق');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (newPassword.length < 6) {
|
|
|
|
|
toast.error('كلمة المرور الجديدة يجب أن تكون 6 أحرف على الأقل');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
try {
|
|
|
|
|
await verifyForgetPasswordOtp(email, code, newPassword);
|
|
|
|
|
toast.success('تم إعادة تعيين كلمة المرور بنجاح');
|
|
|
|
|
setTimeout(() => router.push('/login'), 1200);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
toast.error(err?.message || 'فشل التحقق من الرمز');
|
|
|
|
|
} finally {
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const inputClass = "w-full pr-12 pl-4 py-3 bg-white/10 border border-gray-300 rounded-xl focus:outline-none focus:ring-2 focus:ring-amber-500 focus:border-transparent text-gray-900 placeholder-gray-400 transition-all";
|
|
|
|
|
|
2026-03-17 20:36:59 +03:00
|
|
|
return (
|
2026-05-25 21:27:39 +03:00
|
|
|
<div className="min-h-screen bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50 flex items-center justify-center p-4 relative overflow-hidden">
|
|
|
|
|
<Toaster position="top-center" reverseOrder={false} />
|
2026-03-17 20:36:59 +03:00
|
|
|
<div className="absolute inset-0 overflow-hidden">
|
2026-05-25 21:27:39 +03:00
|
|
|
<div className="absolute -top-40 -right-40 w-80 h-80 bg-amber-400 rounded-full opacity-20 blur-3xl animate-pulse"></div>
|
|
|
|
|
<div className="absolute -bottom-40 -left-40 w-80 h-80 bg-orange-400 rounded-full opacity-20 blur-3xl animate-pulse delay-1000"></div>
|
2026-03-17 20:36:59 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<motion.div
|
|
|
|
|
initial={{ opacity: 0, scale: 0.95 }}
|
|
|
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
|
|
|
transition={{ duration: 0.5 }}
|
|
|
|
|
className="relative w-full max-w-md"
|
|
|
|
|
>
|
2026-05-25 21:27:39 +03:00
|
|
|
<motion.div
|
2026-03-17 20:36:59 +03:00
|
|
|
initial={{ opacity: 0, x: -20 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
className="absolute -top-16 left-0"
|
|
|
|
|
>
|
2026-05-25 21:27:39 +03:00
|
|
|
<Link href="/login" className="flex items-center gap-2 text-gray-600 hover:text-amber-600 transition-colors group">
|
|
|
|
|
<ArrowLeft className="w-5 h-5 group-hover:-translate-x-1 transition-transform" />
|
2026-03-17 20:36:59 +03:00
|
|
|
<span>العودة لتسجيل الدخول</span>
|
|
|
|
|
</Link>
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
2026-05-25 21:27:39 +03:00
|
|
|
<div className="bg-white/80 backdrop-blur-xl rounded-3xl shadow-2xl border border-white/60 overflow-hidden">
|
|
|
|
|
<div className="bg-gradient-to-l from-amber-500 to-amber-600 p-8 text-center">
|
|
|
|
|
<motion.h1
|
2026-03-17 20:36:59 +03:00
|
|
|
initial={{ y: 20, opacity: 0 }}
|
|
|
|
|
animate={{ y: 0, opacity: 1 }}
|
|
|
|
|
className="text-3xl font-bold text-white mb-2"
|
|
|
|
|
>
|
|
|
|
|
استعادة كلمة المرور
|
|
|
|
|
</motion.h1>
|
2026-05-25 21:27:39 +03:00
|
|
|
<motion.p
|
2026-03-17 20:36:59 +03:00
|
|
|
initial={{ y: 20, opacity: 0 }}
|
|
|
|
|
animate={{ y: 0, opacity: 1 }}
|
|
|
|
|
transition={{ delay: 0.1 }}
|
2026-05-25 21:27:39 +03:00
|
|
|
className="text-amber-100"
|
2026-03-17 20:36:59 +03:00
|
|
|
>
|
2026-05-25 21:27:39 +03:00
|
|
|
{step === 1 ? 'أدخل بريدك الإلكتروني لاستلام رمز التحقق' : 'أدخل رمز التحقق وكلمة المرور الجديدة'}
|
2026-03-17 20:36:59 +03:00
|
|
|
</motion.p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="p-8">
|
2026-05-25 21:27:39 +03:00
|
|
|
<AnimatePresence mode="wait">
|
|
|
|
|
{step === 1 && (
|
|
|
|
|
<motion.form
|
|
|
|
|
key="step1"
|
|
|
|
|
initial={{ opacity: 0, x: -30 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
exit={{ opacity: 0, x: 30 }}
|
|
|
|
|
onSubmit={handleRequestOtp}
|
|
|
|
|
className="space-y-6"
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
|
|
|
البريد الإلكتروني
|
|
|
|
|
</label>
|
|
|
|
|
<div className="relative group">
|
|
|
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
|
|
|
|
<Mail className="w-5 h-5 text-gray-400 group-focus-within:text-amber-500 transition-colors" />
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
|
|
|
|
type="email"
|
|
|
|
|
value={email}
|
|
|
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
|
|
|
className={inputClass}
|
|
|
|
|
placeholder="أدخل بريدك الإلكتروني"
|
|
|
|
|
dir="ltr"
|
|
|
|
|
required
|
|
|
|
|
/>
|
2026-03-17 20:36:59 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-05-25 21:27:39 +03:00
|
|
|
<motion.button
|
|
|
|
|
type="submit"
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
whileHover={{ scale: isLoading ? 1 : 1.02 }}
|
|
|
|
|
whileTap={{ scale: isLoading ? 1 : 0.98 }}
|
|
|
|
|
className="w-full bg-gradient-to-l from-amber-500 to-amber-600 text-white py-3 rounded-xl font-bold text-lg hover:from-amber-600 hover:to-amber-700 transition-all disabled:opacity-50 disabled:cursor-not-allowed shadow-lg shadow-amber-500/25"
|
|
|
|
|
>
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="flex items-center justify-center gap-2">
|
|
|
|
|
<div className="w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin" />
|
|
|
|
|
<span>جاري الإرسال...</span>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
'إرسال رمز التحقق'
|
|
|
|
|
)}
|
|
|
|
|
</motion.button>
|
|
|
|
|
</motion.form>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{step === 2 && (
|
|
|
|
|
<motion.form
|
|
|
|
|
key="step2"
|
|
|
|
|
initial={{ opacity: 0, x: 30 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
exit={{ opacity: 0, x: -30 }}
|
|
|
|
|
onSubmit={handleVerifyOtp}
|
|
|
|
|
className="space-y-6"
|
2026-03-17 20:36:59 +03:00
|
|
|
>
|
2026-05-25 21:27:39 +03:00
|
|
|
<div>
|
|
|
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
|
|
|
رمز التحقق
|
|
|
|
|
</label>
|
|
|
|
|
<div className="relative group">
|
|
|
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
|
|
|
|
<Key className="w-5 h-5 text-gray-400 group-focus-within:text-amber-500 transition-colors" />
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
value={code}
|
|
|
|
|
onChange={(e) => setCode(e.target.value)}
|
|
|
|
|
className={inputClass}
|
|
|
|
|
placeholder="أدخل رمز التحقق"
|
|
|
|
|
dir="ltr"
|
|
|
|
|
required
|
|
|
|
|
/>
|
2026-03-17 20:36:59 +03:00
|
|
|
</div>
|
2026-05-25 21:27:39 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
|
|
|
كلمة المرور الجديدة
|
|
|
|
|
</label>
|
|
|
|
|
<div className="relative group">
|
|
|
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
|
|
|
|
<Lock className="w-5 h-5 text-gray-400 group-focus-within:text-amber-500 transition-colors" />
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
|
|
|
|
type="password"
|
|
|
|
|
value={newPassword}
|
|
|
|
|
onChange={(e) => setNewPassword(e.target.value)}
|
|
|
|
|
className={inputClass}
|
|
|
|
|
placeholder="أدخل كلمة المرور الجديدة"
|
|
|
|
|
required
|
|
|
|
|
minLength={6}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<motion.button
|
|
|
|
|
type="submit"
|
|
|
|
|
disabled={isLoading}
|
|
|
|
|
whileHover={{ scale: isLoading ? 1 : 1.02 }}
|
|
|
|
|
whileTap={{ scale: isLoading ? 1 : 0.98 }}
|
|
|
|
|
className="w-full bg-gradient-to-l from-amber-500 to-amber-600 text-white py-3 rounded-xl font-bold text-lg hover:from-amber-600 hover:to-amber-700 transition-all disabled:opacity-50 disabled:cursor-not-allowed shadow-lg shadow-amber-500/25"
|
|
|
|
|
>
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="flex items-center justify-center gap-2">
|
|
|
|
|
<div className="w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin" />
|
|
|
|
|
<span>جاري التحقق...</span>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
'إعادة تعيين كلمة المرور'
|
|
|
|
|
)}
|
|
|
|
|
</motion.button>
|
|
|
|
|
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => setStep(1)}
|
|
|
|
|
className="text-sm text-amber-600 hover:text-amber-700 transition-colors flex items-center justify-center gap-1 mx-auto"
|
|
|
|
|
>
|
|
|
|
|
<RefreshCw className="w-4 h-4" />
|
|
|
|
|
<span>تغيير البريد الإلكتروني</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</motion.form>
|
|
|
|
|
)}
|
|
|
|
|
</AnimatePresence>
|
2026-03-17 20:36:59 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</motion.div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2026-05-25 21:27:39 +03:00
|
|
|
}
|