-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
423 lines (407 loc) · 17.7 KB
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="./img/logos/burger.png"
type="image/x-icon"
/>
<title>ثبت نام</title>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./src/output.css" />
</head>
<style>
.delnavaz {
font-family: "Indie Flower", cursive;
}
</style>
<body
class="font-lalezar bg-[url('../img/backheader/dark-surface-with-blank-space-fast-food-menu.jpg')] bg-cover bg-fixed bg-center"
>
<!--HEADER-->
<header class="min-h-screen md:bg-center bg-right bg-cover">
<nav
class="w-full text-slate-950 flex items-center justify-between px-5 font-bold text-xl bg-green-500"
>
<div
class="hover:text-slate-300 duration-75 flex items-center gap-x-10 md:gap-x-0"
>
<ion-icon
id="menu"
class="text-3xl hover:cursor-pointer md:hidden"
name="menu"
></ion-icon>
<a href="./signup.html">
<button
class="text-[14px] xl:text-lg w-20 h-10 xl:w-32 rounded-2xl text-slate-950 hover:text-white bg-white hover:font-bold hover:bg-slate-950 duration-150"
>
ورود / ثبت نام
</button>
</a>
</div>
<div
class="nav-links z-30 md:static md:min-h-fit absolute bg-green-500 min-h-[60vh] right-0 -top-[100%] md:mt-0 duration-300 w-full md:w-auto flex items-center px-5"
>
<ul
class="flex md:flex-row flex-col md:items-center md:gap-x-8 gap-16 lg:gap-x-32"
>
<li
class="flex items-center gap-x-2 hover:text-slate-300 duration-75"
>
<ion-icon class="md:hidden" name="home-outline"></ion-icon>
<a href="./index.html">صفحه اصلی</a>
</li>
<li
class="flex items-center gap-x-2 hover:text-slate-300 duration-75"
>
<ion-icon class="md:hidden" name="fast-food-outline"></ion-icon>
<a href="#">منو</a>
</li>
<li
class="flex items-center gap-x-2 hover:text-slate-300 duration-75"
>
<ion-icon class="md:hidden" name="cart-outline"></ion-icon>
<a href="./maghale.html">مقالات</a>
</li>
<li
class="flex items-center gap-x-2 hover:text-slate-300 duration-75"
>
<ion-icon class="md:hidden" name="call-outline"></ion-icon>
<a href="./about.html">ارتباط با ما</a>
</li>
</ul>
</div>
<div>
<img
class="w-16 cursor-none"
src="./img/logos/burger.png"
alt="logo"
/>
</div>
</nav>
</header>
<!--HEADER-->
<!--SignUp-->
<div
class="flex mt-14 w-full md:w-[50%] flex-col items-center justify-center px-6 py-8 mx-auto md:h-screen lg:py-0 absolute top-0 left-0"
>
<div
data-aos="fade-down-left"
class="w-full bg-white/10 backdrop-blur-md rounded-lg shadow md:mt-0 sm:max-w-md xl:p-0"
>
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
<h1
class="text-xl font-bold leading-tight tracking-tight text-green-500 md:text-2xl"
>
ساخت حساب کاربری
</h1>
<form class="space-y-4 md:space-y-6" action="#">
<div>
<label
for="email"
class="block mb-2 text-sm font-medium text-green-500"
>ایمیل</label
>
<input
type="email"
name="email"
id="email"
class="border border-gray-300 bg-white sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2"
placeholder="[email protected]"
required=""
/>
</div>
<div>
<label
for="password"
class="block mb-2 text-sm font-medium text-green-500"
>رمز عبور</label
>
<input
type="password"
name="password"
id="password"
placeholder="••••••••"
class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-green-600 focus:border-green-600 block w-full p-2.5"
required=""
/>
</div>
<div>
<label
for="confirm-password"
class="block mb-2 text-sm font-medium text-green-500"
>تکرار رمز عبور</label
>
<input
type="confirm-password"
name="confirm-password"
id="confirm-password"
placeholder="••••••••"
class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-green-600 focus:border-green-600 block w-full p-2.5"
required=""
/>
</div>
<div class="flex items-start">
<div class="flex items-center h-5">
<input
id="terms"
aria-describedby="terms"
type="checkbox"
class="mx-4 w-4 h-4 border text-green-500 border-green-300 rounded bg-gray-50 focus:ring-3 focus:ring-green-300"
required=""
/>
</div>
<div class="ml-3 text-sm">
<label
for="terms"
class="font-light text-gray-500 dark:text-gray-300"
>تمام قوانین سایت را
<a class="font-medium text-green-600 hover:underline" href="#"
>من میپذیرم</a
></label
>
</div>
</div>
<button
type="submit"
class="w-full bg-green-500 text-white bg-primary-600 hover:bg-green-700 focus:ring-4 focus:outline-none focus:ring-green-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center"
>
ثبت
</button>
<p class="text-sm font-light text-white">
از قبل حساب کاربری دارید ؟
<a
style="color: rgb(255, 247, 0)"
class="login"
href="./login.html"
class="font-medium text-green-500 hover:underline"
>اینجا کلیک کنید</a
>
</p>
</form>
</div>
</div>
</div>
</header>
<!--SignUp-->
<!--FOOTER-->
<!-- Footer section with social media icons and newsletter sign-up -->
<footer
class="flex flex-col items-center bg-green-500 text-center text-surface"
>
<div class="container px-6 pt-6">
<!-- Social media icons container -->
<div class="mb-6 flex justify-center space-x-2">
<a
href="#!"
type="button"
class="rounded-full ml-2 bg-white p-3 uppercase leading-normal text-surface shadow-dark-3 shadow-black/30 transition duration-150 ease-in-out hover:shadow-dark-1 focus:shadow-dark-1 focus:outline-none focus:ring-0 active:shadow-1 dark:bg-neutral-700 dark:text-white"
data-twe-ripple-init
data-twe-ripple-color="light"
>
<span class="mx-auto [&>svg]:h-5 [&>svg]:w-5">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 448 512"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc. -->
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
</span>
</a>
<a
href="#!"
type="button"
class="rounded-full bg-white p-3 uppercase leading-normal text-surface shadow-dark-3 shadow-black/30 transition duration-150 ease-in-out hover:shadow-dark-1 focus:shadow-dark-1 focus:outline-none focus:ring-0 active:shadow-1 dark:bg-neutral-700 dark:text-white"
data-twe-ripple-init
data-twe-ripple-color="light"
>
<span class="mx-auto [&>svg]:h-5 [&>svg]:w-5">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 448 512"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc. -->
<path
d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z"
/>
</svg>
</span>
</a>
<a
href="#!"
type="button"
class="rounded-full bg-white p-3 uppercase leading-normal text-surface shadow-dark-3 shadow-black/30 transition duration-150 ease-in-out hover:shadow-dark-1 focus:shadow-dark-1 focus:outline-none focus:ring-0 active:shadow-1 dark:bg-neutral-700 dark:text-white"
data-twe-ripple-init
data-twe-ripple-color="light"
>
<span class="mx-auto [&>svg]:h-5 [&>svg]:w-5">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 496 512"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc. -->
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
/>
</svg>
</span>
</a>
</div>
<!-- Newsletter sign-up form -->
<div>
<form action="">
<div
class="gird-cols-1 grid items-center justify-center gap-4 md:grid-cols-3"
>
<div class="md:mb-6 md:ms-auto">
<p>
<strong class="text-sm font-light text-right"
>برای با خبر شدن از اخبار و تخفیف ها ایمیل یا شماره تماس را
بدهید
</strong>
</p>
</div>
<!-- Newsletter sign-up input field -->
<div class="relative md:mb-6" data-twe-input-wrapper-init>
<input
type="email"
class="peer block min-h-[auto] w-full bg-green-50 rounded border-0 px-3 py-[0.32rem] leading-[1.6] outline-none transition-all duration-200 ease-linear focus:placeholder:opacity-0 focus:placeholder:text-slate-950 motion-reduce:transition-none text-slate-950 placeholder:text-slate-600"
id="exampleFormControlInputEmail"
placeholder="آدرس ایمیل یا شماره تماس"
/>
</div>
<!-- Newsletter sign-up submit button -->
<div class="mb-6 md:me-auto">
<button
type="submit"
class="inline-block rounded px-6 pb-[6px] pt-2 text-xs font-medium uppercase leading-normal text-surface shadow-dark-3 shadow-black/30 transition duration-150 ease-in-out hover:shadow-dark-1 focus:shadow-dark-1 focus:outline-none focus:ring-0 active:shadow-1 dark:bg-neutral-700 dark:text-white"
data-twe-ripple-init
data-twe-ripple-color="light"
>
ثبت
</button>
</div>
</div>
</form>
</div>
<!-- Copyright information -->
<div class="mb-6">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt
distinctio earum repellat quaerat voluptatibus placeat nam, commodi
optio pariatur est quia magnam eum harum corrupti dicta, aliquam
sequi voluptate quas.
</p>
</div>
<!-- Links section -->
<div class="grid md:grid-cols-2 lg:grid-cols-4">
<div class="mb-6">
<h5 class="mb-2.5 font-bold uppercase">Links</h5>
<ul class="mb-0 list-none">
<li>
<a href="#!">Link 1</a>
</li>
<li>
<a href="#!">Link 2</a>
</li>
<li>
<a href="#!">Link 3</a>
</li>
<li>
<a href="#!">Link 4</a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 class="mb-2.5 font-bold uppercase">Links</h5>
<ul class="mb-0 list-none">
<li>
<a href="#!">Link 1</a>
</li>
<li>
<a href="#!">Link 2</a>
</li>
<li>
<a href="#!">Link 3</a>
</li>
<li>
<a href="#!">Link 4</a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 class="mb-2.5 font-bold uppercase">Links</h5>
<ul class="mb-0 list-none">
<li>
<a href="#!">Link 1</a>
</li>
<li>
<a href="#!">Link 2</a>
</li>
<li>
<a href="#!">Link 3</a>
</li>
<li>
<a href="#!">Link 4</a>
</li>
</ul>
</div>
<div class="mb-6">
<h5 class="mb-2.5 font-bold uppercase">Links</h5>
<ul class="mb-0 list-none">
<li>
<a href="#!">Link 1</a>
</li>
<li>
<a href="#!">Link 2</a>
</li>
<li>
<a href="#!">Link 3</a>
</li>
<li>
<a href="#!">Link 4</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Copyright section -->
<div class="w-full bg-black/5 p-4 text-center">
© 2024 Copyright:
<a class="font-semibold" href="#">سازنده : محمدرضا کاظمی</a>
</div>
</footer>
<!--FOOTER-->
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="./src/app.js"></script>
</body>
</html>