Rayan545454 commited on
Commit
0a87fb7
·
verified ·
1 Parent(s): 94e74ce

‏<!-- 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

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +155 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: R444rrr
3
- emoji: 🌖
4
- colorFrom: blue
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: r444rrr
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,155 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ar" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6
+ <title>متجر الحقائب الفاخرة</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-10px); }
13
+ }
14
+ .floating {
15
+ animation: float 3s ease-in-out infinite;
16
+ }
17
+ .glass-effect {
18
+ background: rgba(255, 255, 255, 0.2);
19
+ backdrop-filter: blur(10px);
20
+ border: 1px solid rgba(255, 255, 255, 0.3);
21
+ }
22
+ .input-focus:focus {
23
+ border-color: #ec4899;
24
+ box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
25
+ }
26
+ </style>
27
+ </head>
28
+ <body class="bg-gray-100 font-sans">
29
+ <!-- Navigation -->
30
+ <nav class="bg-pink-600 text-white shadow-lg">
31
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
32
+ <a href="#" class="text-2xl font-bold">حقيبتي</a>
33
+ <div class="flex items-center space-x-4 space-x-reverse">
34
+ <a href="#" class="hover:text-pink-200 transition"><i class="fas fa-shopping-cart"></i></a>
35
+ <a href="#" class="hover:text-pink-200 transition"><i class="fas fa-user"></i></a>
36
+ </div>
37
+ </div>
38
+ </nav>
39
+
40
+ <!-- Main Content -->
41
+ <div class="container mx-auto px-4 py-8">
42
+ <!-- Product Page -->
43
+ <div id="product-page" class="max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden md:max-w-2xl my-8">
44
+ <div class="md:flex">
45
+ <div class="md:flex-shrink-0 p-4">
46
+ <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="حقيبة يد أنيقة">
47
+ </div>
48
+ <div class="p-8">
49
+ <div class="uppercase tracking-wide text-sm text-pink-600 font-semibold">حقيبة يد</div>
50
+ <h1 class="block mt-1 text-lg leading-tight font-medium text-black">حقيبة يد أنيقة</h1>
51
+ <p class="mt-2 text-gray-600">مصنوعة من الجلد الطبيعي، تصميم عصري ومساحة واسعة تناسب جميع احتياجاتك اليومية.</p>
52
+ <div class="mt-4 flex items-center">
53
+ <span class="text-3xl font-bold text-pink-600">199 درهم</span>
54
+ <span class="ml-2 text-sm text-gray-500 line-through">250 درهم</span>
55
+ <span class="mr-2 bg-pink-100 text-pink-800 text-xs font-semibold px-2.5 py-0.5 rounded">خصم 20%</span>
56
+ </div>
57
+ <div class="mt-6">
58
+ <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">
59
+ <i class="fas fa-shopping-cart mr-2"></i> أضف إلى السلة
60
+ </button>
61
+ </div>
62
+ <div class="mt-4 flex justify-between text-sm text-gray-500">
63
+ <div class="flex items-center">
64
+ <i class="fas fa-truck mr-1"></i>
65
+ <span>شحن مجاني</span>
66
+ </div>
67
+ <div class="flex items-center">
68
+ <i class="fas fa-shield-alt mr-1"></i>
69
+ <span>ضمان لمدة عام</span>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </div>
75
+
76
+ <!-- Checkout Page -->
77
+ <div id="checkout-page" class="hidden max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden my-8">
78
+ <div class="p-8">
79
+ <div class="flex justify-between items-center mb-6">
80
+ <h2 class="text-2xl font-bold text-gray-800">أكمل بياناتك</h2>
81
+ <button onclick="showProductPage()" class="text-gray-500 hover:text-pink-600">
82
+ <i class="fas fa-arrow-right"></i>
83
+ </button>
84
+ </div>
85
+
86
+ <form id="checkout-form" class="space-y-4">
87
+ <div>
88
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="name">الاسم الكامل</label>
89
+ <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"
90
+ id="name" type="text" placeholder="أدخل اسمك" required>
91
+ </div>
92
+
93
+ <div>
94
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="email">البريد الإلكتروني</label>
95
+ <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"
96
+ id="email" type="email" placeholder="[email protected]" required>
97
+ </div>
98
+
99
+ <div>
100
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="phone">رقم الجوال</label>
101
+ <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"
102
+ id="phone" type="tel" placeholder="+971501234567" required>
103
+ </div>
104
+
105
+ <div>
106
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="address">العنوان</label>
107
+ <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"
108
+ id="address" rows="2" placeholder="الشارقة، الإمارات" required></textarea>
109
+ </div>
110
+
111
+ <div class="pt-4">
112
+ <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">
113
+ المتابعة إلى الدفع
114
+ </button>
115
+ </div>
116
+ </form>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Payment Page -->
121
+ <div id="payment-page" class="hidden max-w-md mx-auto rounded-xl overflow-hidden my-8">
122
+ <div class="glass-effect p-8 rounded-xl shadow-lg">
123
+ <div class="text-center mb-6">
124
+ <div class="text-5xl mb-4">💳</div>
125
+ <h2 class="text-2xl font-bold text-white">أتمم الدفع</h2>
126
+ </div>
127
+
128
+ <div class="bg-white bg-opacity-20 p-6 rounded-lg mb-6">
129
+ <div class="flex justify-between items-center mb-3">
130
+ <span class="font-medium text-white">المنتج:</span>
131
+ <span class="text-white">حقيبة يد أنيقة</span>
132
+ </div>
133
+ <div class="flex justify-between items-center mb-3">
134
+ <span class="font-medium text-white">السعر:</span>
135
+ <span class="text-white">199 درهم</span>
136
+ </div>
137
+ <div class="flex justify-between items-center">
138
+ <span class="font-medium text-white">الشحن:</span>
139
+ <span class="text-green-300">مجاني</span>
140
+ </div>
141
+ <div class="border-t border-white border-opacity-30 my-3"></div>
142
+ <div class="flex justify-between items-center">
143
+ <span class="font-bold text-white">المجموع:</span>
144
+ <span class="text-xl font-bold text-white">199 درهم</span>
145
+ </div>
146
+ </div>
147
+
148
+ <div class="mb-6">
149
+ <label class="block text-white text-sm font-bold mb-2" for="card">رقم البطاقة</label>
150
+ <div class="relative">
151
+ <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"
152
+ id="card" type="text" placeholder="1234 5678 9012 3456" required>
153
+ <div class="absolute left-3 top-3 flex space-x
154
+ <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>
155
+ </html>