'use client'; import { useState } from 'react'; import { motion } from 'framer-motion'; import Link from 'next/link'; import { Mail, ArrowLeft, CheckCircle } from 'lucide-react'; export default function ForgotPasswordPage() { const [email, setEmail] = useState(''); const [isLoading, setIsLoading] = useState(false); const [isSubmitted, setIsSubmitted] = useState(false); const handleSubmit = async (e) => { e.preventDefault(); setIsLoading(true); setTimeout(() => { setIsLoading(false); setIsSubmitted(true); }, 1500); }; return (
تم إرسال رابط استعادة كلمة المرور إلى {email}
العودة لتسجيل الدخول