r444rrr / index.html
Rayan545454's picture
‏<!-- page1.html --> ‏<!DOCTYPE html> ‏<html lang="ar" dir="rtl"> ‏<head> ‏ <meta charset="UTF-8" /> ‏ <meta name="viewport" content="width=device-width, initial-scale=1.0"/> ‏ <title>حقيبة أنيقة</title> ‏ <style> * { ‏ margin: 0; ‏ padding: 0; ‏ box-sizing: border-box; } ‏ body { ‏ background: linear-gradient(135deg, #ffc0cb, #ff9eb0); ‏ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ‏ min-height: 100vh; ‏ display: flex; ‏ align-items: center; ‏ justify-content: center; ‏ text-align: center; ‏ color: #333; } ‏ .container { ‏ background: white; ‏ padding: 40px; ‏ border-radius: 20px; ‏ box-shadow: 0 10px 30px rgba(0,0,0,0.1); ‏ width: 90%; ‏ max-width: 500px; ‏ transform: translateY(0); ‏ animation: float 3s ease-in-out infinite; } ‏ @keyframes float { ‏ 0%, 100% { transform: translateY(0); } ‏ 50% { transform: translateY(-10px); } } ‏ h1 { ‏ color: #e91e63; ‏ margin-bottom: 15px; ‏ font-size: 2.2em; } ‏ p { ‏ font-size: 1.2em; ‏ color: #555; ‏ margin: 15px 0; } ‏ .price { ‏ font-size: 1.8em; ‏ font-weight: bold; ‏ color: #e91e63; } ‏ img { ‏ width: 180px; ‏ margin: 20px 0; ‏ border-radius: 15px; ‏ box-shadow: 0 5px 15px rgba(0,0,0,0.1); } ‏ button { ‏ background: #e91e63; ‏ color: white; ‏ border: none; ‏ padding: 15px 40px; ‏ font-size: 1.2em; ‏ border-radius: 50px; ‏ cursor: pointer; ‏ margin-top: 20px; ‏ transition: 0.3s; ‏ box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3); } ‏ button:hover { ‏ background: #c2185b; ‏ transform: scale(1.05); } ‏ </style> ‏</head> ‏<body> ‏ <div class="container"> ‏ <h1>حقيبة يد أنيقة</h1> ‏ <p>مصنوعة من الجلد الطبيعي، تصميم عصري ومساحة واسعة</p> ‏ <div class="price">199 درهم</div> ‏ <img src="https://images.unsplash.com/photo-1585334865750-77f9ecaa06cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80" alt="حقيبة يد"> ‏ <br> ‏ <a href="page2.html" style="text-decoration: none;"> ‏ <button>الشراء الآن</button> ‏ </a> ‏ </div> ‏</body> ‏</html> ‏<!-- page2.html --> ‏<!DOCTYPE html> ‏<html lang="ar" dir="rtl"> ‏<head> ‏ <meta charset="UTF-8" /> ‏ <meta name="viewport" content="width=device-width, initial-scale=1.0"/> ‏ <title>أدخل بياناتك</title> ‏ <style> * { ‏ margin: 0; ‏ padding: 0; ‏ box-sizing: border-box; } ‏ body { ‏ background: white; ‏ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ‏ min-height: 100vh; ‏ display: flex; ‏ align-items: center; ‏ justify-content: center; ‏ text-align: center; ‏ color: #333; } ‏ .container { ‏ padding: 50px; ‏ border-radius: 20px; ‏ box-shadow: 0 10px 30px rgba(0,0,0,0.1); ‏ width: 90%; ‏ max-width: 500px; ‏ background: #f9f9f9; } ‏ h2 { ‏ color: #333; ‏ margin-bottom: 25px; ‏ font-size: 2em; } ‏ .form-group { ‏ margin-bottom: 20px; ‏ text-align: right; } ‏ .form-group label { ‏ display: block; ‏ margin-bottom: 8px; ‏ font-weight: bold; ‏ color: #555; } ‏ .form-group input { ‏ width: 100%; ‏ padding: 14px; ‏ border: 2px solid #e0e0e0; ‏ border-radius: 12px; ‏ font-size: 1em; ‏ transition: border 0.3s; } ‏ .form-group input:focus { ‏ border-color: #e91e63; ‏ outline: none; } ‏ button { ‏ background: #4caf50; ‏ color: white; ‏ border: none; ‏ padding: 15px 40px; ‏ font-size: 1.2em; ‏ border-radius: 50px; ‏ cursor: pointer; ‏ margin-top: 20px; ‏ transition: 0.3s; } ‏ button:hover { ‏ background: #388e3c; ‏ transform: scale(1.05); } ‏ </style> ‏</head> ‏<body> ‏ <div class="container"> ‏ <h2>أكمل بياناتك</h2> ‏ <form action="page3.html" method="get"> ‏ <div class="form-group"> ‏ <label>الاسم الكامل</label> ‏ <input type="text" name="name" placeholder="أدخل اسمك" required /> ‏ </div> ‏ <div class="form-group"> ‏ <label>البريد الإلكتروني</label> ‏ <input type="email" name="email" placeholder="[email protected]" required /> ‏ </div> ‏ <div class="form-group"> ‏ <label>رقم الجوال</label> ‏ <input type="tel" name="phone" placeholder="+971501234567" required /> ‏ </div> ‏ <div class="form-group"> ‏ <label>العنوان</label> ‏ <input type="text" name="address" placeholder="الشارقة، الإمارات" required /> ‏ </div> ‏ <button type="submit">المتابعة إلى الدفع</button> ‏ </form> ‏ </div> ‏</body> ‏</html> ‏<!-- page3.html --> ‏<!DOCTYPE html> ‏<html lang="ar" dir="rtl"> ‏<head> ‏ <meta charset="UTF-8" /> ‏ <meta name="viewport" content="width=device-width, initial-scale=1.0"/> ‏ <title>الدفع</title> ‏ <style> * { ‏ margin: 0; ‏ padding: 0; ‏ box-sizing: border-box; } ‏ body { ‏ background: linear-gradient(135deg, #ff4d4d, #cc0000); ‏ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; ‏ min-height: 100vh; ‏ display: flex; ‏ align-items: center; ‏ justify-content: center; ‏ text-align: center; ‏ color: white; } ‏ .container { ‏ background: rgba(255, 255, 255, 0.2); ‏ backdrop-filter: blur(10px); ‏ padding: 50px; ‏ border-radius: 20px; ‏ box-shadow: 0 10px 30px rgba(0,0,0,0.2); ‏ width: 90%; ‏ max-width: 500px; ‏ border: 1px solid rgba(255, 255, 255, 0.3); } ‏ h2 { ‏ font-size: 2.2em; ‏ margin-bottom: 20px; } ‏ .details { ‏ background: rgba(255, 255, 255, 0.1); ‏ padding: 20px; ‏ border-radius: 15px; ‏ margin: 20px 0; ‏ text-align: right; } ‏ .details p { ‏ font-size: 1.2em; ‏ margin: 10px 0; } ‏ button { ‏ background: white; ‏ color: #ff4d4d; ‏ border: none; ‏ padding: 16px 50px; ‏ font-size: 1.3em; ‏ border-radius: 50px; ‏ cursor: pointer; ‏ margin-top: 20px; ‏ font-weight: bold; ‏ transition: 0.3s; } ‏ button:hover { ‏ background: #e0e0e0; ‏ transform: scale(1.1); } ‏ .icon { ‏ font-size: 3em; ‏ margin-bottom: 20px; } ‏ </style> ‏</head> ‏<body> ‏ <div class="container"> ‏ <div class="icon">💳</div> ‏ <h2>أتمم الدفع</h2> ‏ <div class="details"> ‏ <p><strong>المنتج:</strong> حقيبة يد أنيقة</p> ‏ <p><strong>السعر:</strong> 199 درهم</p> ‏ <p><strong>الشحن:</strong> مجاني</p> ‏ </div> ‏ <button onclick="alert('✅ تم الدفع بنجاح!\nسيتم توصيل طلبك خلال 2-3 أيام.');">ادفع الآن</button> ‏ <p style="margin-top: 20px; font-size: 0.9em; opacity: 0.8;"> نقبل: Visa, MasterCard, Apple Pay ‏ </p> ‏ </div> ‏</body> ‏</html> - Initial Deployment
0a87fb7 verified
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>متجر الحقائب الفاخرة</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
.glass-effect {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.input-focus:focus {
border-color: #ec4899;
box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Navigation -->
<nav class="bg-pink-600 text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<a href="#" class="text-2xl font-bold">حقيبتي</a>
<div class="flex items-center space-x-4 space-x-reverse">
<a href="#" class="hover:text-pink-200 transition"><i class="fas fa-shopping-cart"></i></a>
<a href="#" class="hover:text-pink-200 transition"><i class="fas fa-user"></i></a>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="container mx-auto px-4 py-8">
<!-- Product Page -->
<div id="product-page" class="max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden md:max-w-2xl my-8">
<div class="md:flex">
<div class="md:flex-shrink-0 p-4">
<img class="h-48 w-full object-cover md:h-full md:w-48 rounded-lg shadow-lg" src="https://images.unsplash.com/photo-1585334865750-77f9ecaa06cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80" alt="حقيبة يد أنيقة">
</div>
<div class="p-8">
<div class="uppercase tracking-wide text-sm text-pink-600 font-semibold">حقيبة يد</div>
<h1 class="block mt-1 text-lg leading-tight font-medium text-black">حقيبة يد أنيقة</h1>
<p class="mt-2 text-gray-600">مصنوعة من الجلد الطبيعي، تصميم عصري ومساحة واسعة تناسب جميع احتياجاتك اليومية.</p>
<div class="mt-4 flex items-center">
<span class="text-3xl font-bold text-pink-600">199 درهم</span>
<span class="ml-2 text-sm text-gray-500 line-through">250 درهم</span>
<span class="mr-2 bg-pink-100 text-pink-800 text-xs font-semibold px-2.5 py-0.5 rounded">خصم 20%</span>
</div>
<div class="mt-6">
<button onclick="showCheckoutPage()" class="w-full bg-pink-600 hover:bg-pink-700 text-white font-bold py-3 px-4 rounded-lg shadow-lg transition transform hover:scale-105">
<i class="fas fa-shopping-cart mr-2"></i> أضف إلى السلة
</button>
</div>
<div class="mt-4 flex justify-between text-sm text-gray-500">
<div class="flex items-center">
<i class="fas fa-truck mr-1"></i>
<span>شحن مجاني</span>
</div>
<div class="flex items-center">
<i class="fas fa-shield-alt mr-1"></i>
<span>ضمان لمدة عام</span>
</div>
</div>
</div>
</div>
</div>
<!-- Checkout Page -->
<div id="checkout-page" class="hidden max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden my-8">
<div class="p-8">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800">أكمل بياناتك</h2>
<button onclick="showProductPage()" class="text-gray-500 hover:text-pink-600">
<i class="fas fa-arrow-right"></i>
</button>
</div>
<form id="checkout-form" class="space-y-4">
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="name">الاسم الكامل</label>
<input class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-200 input-focus"
id="name" type="text" placeholder="أدخل اسمك" required>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="email">البريد الإلكتروني</label>
<input class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-200 input-focus"
id="email" type="email" placeholder="[email protected]" required>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="phone">رقم الجوال</label>
<input class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-200 input-focus"
id="phone" type="tel" placeholder="+971501234567" required>
</div>
<div>
<label class="block text-gray-700 text-sm font-bold mb-2" for="address">العنوان</label>
<textarea class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-200 input-focus"
id="address" rows="2" placeholder="الشارقة، الإمارات" required></textarea>
</div>
<div class="pt-4">
<button type="button" onclick="showPaymentPage()" class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded-lg shadow-lg transition transform hover:scale-105">
المتابعة إلى الدفع
</button>
</div>
</form>
</div>
</div>
<!-- Payment Page -->
<div id="payment-page" class="hidden max-w-md mx-auto rounded-xl overflow-hidden my-8">
<div class="glass-effect p-8 rounded-xl shadow-lg">
<div class="text-center mb-6">
<div class="text-5xl mb-4">💳</div>
<h2 class="text-2xl font-bold text-white">أتمم الدفع</h2>
</div>
<div class="bg-white bg-opacity-20 p-6 rounded-lg mb-6">
<div class="flex justify-between items-center mb-3">
<span class="font-medium text-white">المنتج:</span>
<span class="text-white">حقيبة يد أنيقة</span>
</div>
<div class="flex justify-between items-center mb-3">
<span class="font-medium text-white">السعر:</span>
<span class="text-white">199 درهم</span>
</div>
<div class="flex justify-between items-center">
<span class="font-medium text-white">الشحن:</span>
<span class="text-green-300">مجاني</span>
</div>
<div class="border-t border-white border-opacity-30 my-3"></div>
<div class="flex justify-between items-center">
<span class="font-bold text-white">المجموع:</span>
<span class="text-xl font-bold text-white">199 درهم</span>
</div>
</div>
<div class="mb-6">
<label class="block text-white text-sm font-bold mb-2" for="card">رقم البطاقة</label>
<div class="relative">
<input class="w-full px-4 py-3 rounded-lg border border-white border-opacity-30 bg-white bg-opacity-20 text-white placeholder-white placeholder-opacity-70 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50"
id="card" type="text" placeholder="1234 5678 9012 3456" required>
<div class="absolute left-3 top-3 flex space-x
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rayan545454/r444rrr" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>