438 lines
18 KiB
JavaScript
438 lines
18 KiB
JavaScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { motion } from 'framer-motion';
|
|
import { useRouter } from 'next/navigation';
|
|
import Link from 'next/link';
|
|
import {
|
|
User,
|
|
Mail,
|
|
Phone,
|
|
Lock,
|
|
Eye,
|
|
EyeOff,
|
|
CheckCircle,
|
|
XCircle,
|
|
ArrowLeft,
|
|
Home,
|
|
Loader2
|
|
} from 'lucide-react';
|
|
import toast, { Toaster } from 'react-hot-toast';
|
|
|
|
export default function TenantRegisterPage() {
|
|
const router = useRouter();
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [formData, setFormData] = useState({
|
|
name: '',
|
|
email: '',
|
|
phone: '',
|
|
password: '',
|
|
confirmPassword: '',
|
|
agreeTerms: false
|
|
});
|
|
const [errors, setErrors] = useState({});
|
|
|
|
const validateEmail = (email) => {
|
|
const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
return re.test(email);
|
|
};
|
|
|
|
const validatePhone = (phone) => {
|
|
const re = /^(09|05)[0-9]{8}$/;
|
|
return re.test(phone);
|
|
};
|
|
|
|
const validateForm = () => {
|
|
const newErrors = {};
|
|
|
|
if (!formData.name) {
|
|
newErrors.name = 'الاسم الكامل مطلوب';
|
|
} else if (formData.name.length < 3) {
|
|
newErrors.name = 'الاسم يجب أن يكون 3 أحرف على الأقل';
|
|
}
|
|
|
|
if (!formData.email) {
|
|
newErrors.email = 'البريد الإلكتروني مطلوب';
|
|
} else if (!validateEmail(formData.email)) {
|
|
newErrors.email = 'البريد الإلكتروني غير صالح';
|
|
}
|
|
|
|
if (!formData.phone) {
|
|
newErrors.phone = 'رقم الهاتف مطلوب';
|
|
} else if (!validatePhone(formData.phone)) {
|
|
newErrors.phone = 'رقم الهاتف غير صالح (يجب أن يبدأ 09 أو 05)';
|
|
}
|
|
|
|
if (!formData.password) {
|
|
newErrors.password = 'كلمة المرور مطلوبة';
|
|
} else if (formData.password.length < 6) {
|
|
newErrors.password = 'كلمة المرور يجب أن تكون 6 أحرف على الأقل';
|
|
}
|
|
|
|
if (formData.password !== formData.confirmPassword) {
|
|
newErrors.confirmPassword = 'كلمات المرور غير متطابقة';
|
|
}
|
|
|
|
setErrors(newErrors);
|
|
return Object.keys(newErrors).length === 0;
|
|
};
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
|
|
if (!validateForm()) {
|
|
toast.error('يرجى تصحيح الأخطاء في النموذج');
|
|
return;
|
|
}
|
|
|
|
if (!formData.agreeTerms) {
|
|
toast.error('يجب الموافقة على الشروط والأحكام');
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
|
|
setTimeout(() => {
|
|
setIsLoading(false);
|
|
toast.success('تم إنشاء الحساب بنجاح!', {
|
|
style: { background: '#dcfce7', color: '#166534' },
|
|
duration: 3000
|
|
});
|
|
|
|
localStorage.setItem('user', JSON.stringify({
|
|
name: formData.name,
|
|
email: formData.email,
|
|
role: 'tenant',
|
|
avatar: formData.name.charAt(0).toUpperCase()
|
|
}));
|
|
|
|
setTimeout(() => {
|
|
router.push('/');
|
|
}, 1500);
|
|
}, 2000);
|
|
};
|
|
|
|
const fadeInUp = {
|
|
initial: { opacity: 0, y: 20 },
|
|
animate: { opacity: 1, y: 0 },
|
|
transition: { duration: 0.5 }
|
|
};
|
|
|
|
const staggerContainer = {
|
|
animate: {
|
|
transition: {
|
|
staggerChildren: 0.1
|
|
}
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-gray-950 via-gray-900 to-gray-950 flex items-center justify-center p-4 relative overflow-hidden">
|
|
<Toaster position="top-center" reverseOrder={false} />
|
|
|
|
<div className="absolute inset-0 overflow-hidden">
|
|
{[...Array(20)].map((_, i) => (
|
|
<motion.div
|
|
key={i}
|
|
className="absolute rounded-full bg-blue-500/10"
|
|
style={{
|
|
left: `${Math.random() * 100}%`,
|
|
top: `${Math.random() * 100}%`,
|
|
width: Math.random() * 200 + 50,
|
|
height: Math.random() * 200 + 50,
|
|
}}
|
|
animate={{
|
|
x: [0, Math.random() * 100 - 50, 0],
|
|
y: [0, Math.random() * 100 - 50, 0],
|
|
}}
|
|
transition={{
|
|
duration: Math.random() * 15 + 15,
|
|
repeat: Infinity,
|
|
ease: "linear"
|
|
}}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, scale: 0.95 }}
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
transition={{ duration: 0.5 }}
|
|
className="relative z-10 w-full max-w-md"
|
|
>
|
|
<motion.div
|
|
initial={{ opacity: 0, x: -20 }}
|
|
animate={{ opacity: 1, x: 0 }}
|
|
className="absolute -top-16 left-0"
|
|
>
|
|
<Link
|
|
href="/auth/choose-role"
|
|
className="flex items-center gap-2 text-gray-400 hover:text-white transition-colors group"
|
|
>
|
|
<motion.div whileHover={{ x: -5 }}>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
</motion.div>
|
|
<span>العودة</span>
|
|
</Link>
|
|
</motion.div>
|
|
|
|
<div className="bg-white/5 backdrop-blur-xl rounded-3xl shadow-2xl border border-white/10 overflow-hidden">
|
|
<div className="bg-gradient-to-r from-blue-500 to-blue-600 p-8 text-center relative overflow-hidden">
|
|
<motion.div
|
|
initial={{ scale: 0 }}
|
|
animate={{ scale: 1 }}
|
|
transition={{ delay: 0.2, type: "spring" }}
|
|
className="absolute -top-10 -right-10 w-40 h-40 bg-white/10 rounded-full"
|
|
/>
|
|
|
|
<motion.div
|
|
initial={{ y: 20, opacity: 0 }}
|
|
animate={{ y: 0, opacity: 1 }}
|
|
className="relative z-10"
|
|
>
|
|
<motion.div
|
|
animate={{ rotate: [0, 10, -10, 0] }}
|
|
transition={{ duration: 2, repeat: Infinity }}
|
|
className="w-20 h-20 mx-auto mb-4 bg-white/20 rounded-2xl flex items-center justify-center backdrop-blur-sm"
|
|
>
|
|
<Home className="w-10 h-10 text-white" />
|
|
</motion.div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">إنشاء حساب مستأجر</h1>
|
|
<p className="text-blue-100">انضم إلينا وابحث عن منزل أحلامك</p>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<div className="p-8">
|
|
<motion.form
|
|
variants={staggerContainer}
|
|
initial="initial"
|
|
animate="animate"
|
|
onSubmit={handleSubmit}
|
|
className="space-y-6"
|
|
>
|
|
<motion.div variants={fadeInUp}>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
الاسم الكامل <span className="text-red-500">*</span>
|
|
</label>
|
|
<div className="relative group">
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
|
<User className={`w-5 h-5 ${
|
|
errors.name ? 'text-red-500' : 'text-gray-400 group-focus-within:text-blue-500'
|
|
}`} />
|
|
</div>
|
|
<input
|
|
type="text"
|
|
value={formData.name}
|
|
onChange={(e) => {
|
|
setFormData({...formData, name: e.target.value});
|
|
setErrors({...errors, name: null});
|
|
}}
|
|
className={`w-full pr-12 pl-4 py-3 bg-white/5 border rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500 transition-all ${
|
|
errors.name ? 'border-red-500' : 'border-gray-700'
|
|
}`}
|
|
placeholder="أدخل اسمك الكامل"
|
|
/>
|
|
</div>
|
|
{errors.name && (
|
|
<p className="text-red-500 text-sm mt-1">{errors.name}</p>
|
|
)}
|
|
</motion.div>
|
|
|
|
<motion.div variants={fadeInUp}>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
البريد الإلكتروني <span className="text-red-500">*</span>
|
|
</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 ${
|
|
errors.email ? 'text-red-500' : 'text-gray-400 group-focus-within:text-blue-500'
|
|
}`} />
|
|
</div>
|
|
<input
|
|
type="email"
|
|
value={formData.email}
|
|
onChange={(e) => {
|
|
setFormData({...formData, email: e.target.value});
|
|
setErrors({...errors, email: null});
|
|
}}
|
|
className={`w-full pr-12 pl-4 py-3 bg-white/5 border rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500 transition-all ${
|
|
errors.email ? 'border-red-500' : 'border-gray-700'
|
|
}`}
|
|
placeholder="أدخل بريدك الإلكتروني"
|
|
/>
|
|
</div>
|
|
{errors.email && (
|
|
<p className="text-red-500 text-sm mt-1">{errors.email}</p>
|
|
)}
|
|
</motion.div>
|
|
|
|
<motion.div variants={fadeInUp}>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
رقم الهاتف <span className="text-red-500">*</span>
|
|
</label>
|
|
<div className="relative group">
|
|
<div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
|
|
<Phone className={`w-5 h-5 ${
|
|
errors.phone ? 'text-red-500' : 'text-gray-400 group-focus-within:text-blue-500'
|
|
}`} />
|
|
</div>
|
|
<input
|
|
type="tel"
|
|
value={formData.phone}
|
|
onChange={(e) => {
|
|
setFormData({...formData, phone: e.target.value});
|
|
setErrors({...errors, phone: null});
|
|
}}
|
|
className={`w-full pr-12 pl-4 py-3 bg-white/5 border rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500 transition-all ${
|
|
errors.phone ? 'border-red-500' : 'border-gray-700'
|
|
}`}
|
|
placeholder="أدخل رقم هاتفك"
|
|
/>
|
|
</div>
|
|
{errors.phone && (
|
|
<p className="text-red-500 text-sm mt-1">{errors.phone}</p>
|
|
)}
|
|
</motion.div>
|
|
|
|
<motion.div variants={fadeInUp}>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
كلمة المرور <span className="text-red-500">*</span>
|
|
</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 ${
|
|
errors.password ? 'text-red-500' : 'text-gray-400 group-focus-within:text-blue-500'
|
|
}`} />
|
|
</div>
|
|
<input
|
|
type={showPassword ? "text" : "password"}
|
|
value={formData.password}
|
|
onChange={(e) => {
|
|
setFormData({...formData, password: e.target.value});
|
|
setErrors({...errors, password: null});
|
|
}}
|
|
className={`w-full pr-12 pl-12 py-3 bg-white/5 border rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500 transition-all ${
|
|
errors.password ? 'border-red-500' : 'border-gray-700'
|
|
}`}
|
|
placeholder="أدخل كلمة المرور"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute inset-y-0 left-0 pl-3 flex items-center"
|
|
>
|
|
{showPassword ? (
|
|
<EyeOff className="w-5 h-5 text-gray-400 hover:text-gray-300" />
|
|
) : (
|
|
<Eye className="w-5 h-5 text-gray-400 hover:text-gray-300" />
|
|
)}
|
|
</button>
|
|
</div>
|
|
{errors.password && (
|
|
<p className="text-red-500 text-sm mt-1">{errors.password}</p>
|
|
)}
|
|
</motion.div>
|
|
|
|
<motion.div variants={fadeInUp}>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
تأكيد كلمة المرور <span className="text-red-500">*</span>
|
|
</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 ${
|
|
errors.confirmPassword ? 'text-red-500' : 'text-gray-400 group-focus-within:text-blue-500'
|
|
}`} />
|
|
</div>
|
|
<input
|
|
type={showConfirmPassword ? "text" : "password"}
|
|
value={formData.confirmPassword}
|
|
onChange={(e) => {
|
|
setFormData({...formData, confirmPassword: e.target.value});
|
|
setErrors({...errors, confirmPassword: null});
|
|
}}
|
|
className={`w-full pr-12 pl-12 py-3 bg-white/5 border rounded-xl focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500 transition-all ${
|
|
errors.confirmPassword ? 'border-red-500' : 'border-gray-700'
|
|
}`}
|
|
placeholder="أعد إدخال كلمة المرور"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
|
|
className="absolute inset-y-0 left-0 pl-3 flex items-center"
|
|
>
|
|
{showConfirmPassword ? (
|
|
<EyeOff className="w-5 h-5 text-gray-400 hover:text-gray-300" />
|
|
) : (
|
|
<Eye className="w-5 h-5 text-gray-400 hover:text-gray-300" />
|
|
)}
|
|
</button>
|
|
{formData.confirmPassword && (
|
|
<div className="absolute inset-y-0 left-12 flex items-center">
|
|
{formData.password === formData.confirmPassword ? (
|
|
<CheckCircle className="w-5 h-5 text-green-500" />
|
|
) : (
|
|
<XCircle className="w-5 h-5 text-red-500" />
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{errors.confirmPassword && (
|
|
<p className="text-red-500 text-sm mt-1">{errors.confirmPassword}</p>
|
|
)}
|
|
</motion.div>
|
|
|
|
<motion.div variants={fadeInUp} className="flex items-center gap-2">
|
|
<input
|
|
type="checkbox"
|
|
id="terms"
|
|
checked={formData.agreeTerms}
|
|
onChange={(e) => setFormData({...formData, agreeTerms: e.target.checked})}
|
|
className="w-4 h-4 rounded border-gray-600 bg-white/5 text-blue-500 focus:ring-blue-500 focus:ring-offset-0"
|
|
required
|
|
/>
|
|
<label htmlFor="terms" className="text-sm text-gray-300">
|
|
أوافق على{' '}
|
|
<Link href="/terms" className="text-blue-400 hover:text-blue-300">
|
|
شروط الاستخدام
|
|
</Link>
|
|
{' '}و{' '}
|
|
<Link href="/privacy" className="text-blue-400 hover:text-blue-300">
|
|
سياسة الخصوصية
|
|
</Link>
|
|
</label>
|
|
</motion.div>
|
|
|
|
<motion.button
|
|
variants={fadeInUp}
|
|
type="submit"
|
|
disabled={isLoading || !formData.agreeTerms}
|
|
className="w-full bg-gradient-to-r from-blue-500 to-blue-600 text-white py-4 rounded-xl font-bold text-lg hover:from-blue-600 hover:to-blue-700 transition-all disabled:opacity-50 disabled:cursor-not-allowed shadow-lg shadow-blue-500/25"
|
|
>
|
|
{isLoading ? (
|
|
<div className="flex items-center justify-center gap-2">
|
|
<Loader2 className="w-5 h-5 animate-spin" />
|
|
<span>جاري إنشاء الحساب...</span>
|
|
</div>
|
|
) : (
|
|
'إنشاء حساب'
|
|
)}
|
|
</motion.button>
|
|
|
|
<motion.p variants={fadeInUp} className="text-center text-gray-400 mt-4">
|
|
لديك حساب بالفعل؟{' '}
|
|
<Link
|
|
href="/login"
|
|
className="text-blue-400 hover:text-blue-300 font-medium transition-colors"
|
|
>
|
|
تسجيل الدخول
|
|
</Link>
|
|
</motion.p>
|
|
</motion.form>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
);
|
|
} |