generated from zakirsoft/webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
572 lines (567 loc) · 46.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Signup-Eduguard</title>
<link rel="stylesheet" href="dist/main.css" />
<link rel="icon" type="image/png" href="dist/images/favicon/favicon.png" />
</head>
<body onload="loader()">
<div class="loader">
<span class="loader-spinner">Loading...</span>
</div>
<!-- Header Starts Here -->
<header>
<nav class="navbar navbar-expand-xl navbar-light bg-transparent">
<div class="container">
<!-- Logo -->
<a class="navbar-brand" href="index.html"> <img src="dist/images/logo/logo.png" alt="Logo" class="img-fluid" /> </a>
<button class="menu-icon-container">
<span class="menu-icon"></span>
</button>
<!-- Navbar Item -->
<div class="collapse navbar-collapse d-none d-xl-block d-none d-xl-block" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">
Home
</a>
<div class="nav-item--dropdown">
<ul>
<li><a href="index.html"> Homepage 01</a></li>
<li><a href="home-02.html">Homepage 02</a></li>
<li><a href="home-03.html">Homepage 03</a></li>
</ul>
</div>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">
Course
</a>
<div class="nav-item--dropdown">
<ul>
<li><a href="course-search.html">search course list</a></li>
<li><a href="course-details.html">course details</a></li>
<li><a href="watch.html">Watch Course</a></li>
</ul>
</div>
</li>
<li class="nav-item"><a class="nav-link" aria-current="page" href="about.html">About</a></li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">
Events
</a>
<div class="nav-item--dropdown">
<ul>
<li><a href="event-search.html">Events Search list</a></li>
<li><a href="event.html">Event Details</a></li>
</ul>
</div>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">
Pages
</a>
<div class="nav-item--dropdown">
<ul>
<li class="submenu active">
<a href="#">
My Account
</a>
<div class="nav-item--subDropdown">
<ul>
<li><a href="students-profile.html">Students Profile</a></li>
<li><a href="signin.html">Sign in</a></li>
<li class="active"><a href="signup.html">Sign up</a></li>
<li><a href="verify.html">Verify Email</a></li>
<li><a href="forget-password.html">Forget Password</a></li>
<li><a href="reset-password.html">Reset Password</a></li>
</ul>
</div>
</li>
<li><a href="instructor-profile.html">Instructor Profile</a></li>
<li><a href="become-instructor.html">Become Instructor</a></li>
<li><a href="cart.html">cart</a></li>
<li><a href="checkout.html">Check out</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="404.html">404</a></li>
<li><a href="comingsoon.html">Coming Soon</a></li>
</ul>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
<div class="d-flex align-items-center justify-content-between rightContent">
<form class="header__Search-form" id="searchForm">
<button type="button" class="border-0 bg-transparent header__Search-button" onclick="openSearch()">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="9.19522" cy="9.19518" r="7.61714" stroke="#35343E" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></circle>
<path d="M15.0493 15.4866L18.3493 18.778" stroke="#35343E" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</button>
<div id="myOverlay" class="overlay">
<span class="closebtn" onclick="closeSearch()" title="Close Overlay">×</span>
<div class="overlay-content">
<div>
<input type="text" placeholder="Search.." name="search" />
<button type="button">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="#ffff"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-search"
>
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</button>
</div>
</div>
</div>
</form>
<a href="cart.html" class="cart-nav border-0 bg-transparent mx-3">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.87778 2.51099L2.77634 2.50038C2.40716 2.48688 2.07562 2.74796 2.01087 3.12209L2.00026 3.22354C1.98676 3.59272 2.24784 3.92426 2.62197 3.98901L4.13098 4.25L5.04551 15.1457L5.06443 15.3095C5.24843 16.5519 6.31708 17.486 7.58988 17.486H18.5019L18.6662 17.4808C19.8626 17.4044 20.8545 16.4996 21.0291 15.2978L21.9781 8.73941L21.9945 8.58877C22.0819 7.38969 21.132 6.349 19.9089 6.349H5.81198L5.57725 3.54727L5.55956 3.43641C5.49112 3.14809 5.25673 2.92273 4.95778 2.87099L2.87778 2.51099ZM7.47394 15.9797C6.97867 15.9255 6.58258 15.5277 6.54028 15.0207L5.93798 7.849H19.9089L19.997 7.85548C20.3128 7.90242 20.5409 8.19769 20.4936 8.52465L19.5446 15.0826L19.5208 15.1998C19.4005 15.6584 18.985 15.986 18.5019 15.986H7.58988L7.47394 15.9797ZM5.90828 20.5853C5.90828 19.7492 6.58595 19.0703 7.42228 19.0703C8.25849 19.0703 8.93728 19.7491 8.93728 20.5853C8.93728 21.4216 8.25838 22.0993 7.42228 22.0993C6.58606 22.0993 5.90828 21.4215 5.90828 20.5853ZM17.1597 20.5853C17.1597 19.7491 17.8385 19.0703 18.6747 19.0703C19.5109 19.0703 20.1897 19.7491 20.1897 20.5853C20.1897 21.4216 19.5108 22.0993 18.6747 22.0993C17.8386 22.0993 17.1597 21.4216 17.1597 20.5853ZM17.6484 10.795C17.6484 10.3808 17.3126 10.045 16.8984 10.045H14.1254L14.0236 10.0518C13.6575 10.1015 13.3754 10.4153 13.3754 10.795C13.3754 11.2092 13.7112 11.545 14.1254 11.545H16.8984L17.0001 11.5382C17.3662 11.4885 17.6484 11.1747 17.6484 10.795Z"
fill="#35343E"
></path>
</svg>
<span class="badge bg-primary">2</span> <span class="visually-hidden">Items Added</span>
</a>
<a href="signin.html" class="button button--text">Sign in</a> <a href="signup.html" class="button button--dark">Sign Up</a>
</div>
</div>
<div class="navbar-mobile">
<div>
<div class="navbar-mobile__top">
<a href="index.html"> <img src="dist/images/logo/logo.png" alt="brand" class="img-fluid" /> </a>
<div>
<a href="cart.html" class="cart-nav">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2.87778 2.51099L2.77634 2.50038C2.40716 2.48688 2.07562 2.74796 2.01087 3.12209L2.00026 3.22354C1.98676 3.59272 2.24784 3.92426 2.62197 3.98901L4.13098 4.25L5.04551 15.1457L5.06443 15.3095C5.24843 16.5519 6.31708 17.486 7.58988 17.486H18.5019L18.6662 17.4808C19.8626 17.4044 20.8545 16.4996 21.0291 15.2978L21.9781 8.73941L21.9945 8.58877C22.0819 7.38969 21.132 6.349 19.9089 6.349H5.81198L5.57725 3.54727L5.55956 3.43641C5.49112 3.14809 5.25673 2.92273 4.95778 2.87099L2.87778 2.51099ZM7.47394 15.9797C6.97867 15.9255 6.58258 15.5277 6.54028 15.0207L5.93798 7.849H19.9089L19.997 7.85548C20.3128 7.90242 20.5409 8.19769 20.4936 8.52465L19.5446 15.0826L19.5208 15.1998C19.4005 15.6584 18.985 15.986 18.5019 15.986H7.58988L7.47394 15.9797ZM5.90828 20.5853C5.90828 19.7492 6.58595 19.0703 7.42228 19.0703C8.25849 19.0703 8.93728 19.7491 8.93728 20.5853C8.93728 21.4216 8.25838 22.0993 7.42228 22.0993C6.58606 22.0993 5.90828 21.4215 5.90828 20.5853ZM17.1597 20.5853C17.1597 19.7491 17.8385 19.0703 18.6747 19.0703C19.5109 19.0703 20.1897 19.7491 20.1897 20.5853C20.1897 21.4216 19.5108 22.0993 18.6747 22.0993C17.8386 22.0993 17.1597 21.4216 17.1597 20.5853ZM17.6484 10.795C17.6484 10.3808 17.3126 10.045 16.8984 10.045H14.1254L14.0236 10.0518C13.6575 10.1015 13.3754 10.4153 13.3754 10.795C13.3754 11.2092 13.7112 11.545 14.1254 11.545H16.8984L17.0001 11.5382C17.3662 11.4885 17.6484 11.1747 17.6484 10.795Z"
fill="#35343E"
></path>
</svg>
<span class="badge bg-primary">2</span> <span class="visually-hidden">Items Added</span>
</a>
<button class="navbar-mobile--cross">
<svg width="20" height="19" viewBox="0 0 20 19" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M14.5967 4.59668L5.40429 13.7891" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M5.40332 4.59668L14.5957 13.7891" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
</div>
</div>
<div class="navbar-mobile__menu">
<ul class="navbar-mobile__menu-list">
<li class="navbar-mobile__menu-item">
<a href="#">
<span class="navbar-mobile__menu-link">
Home
</span>
<span class="navbar-mobile__menu-dropicon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right"
>
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</span>
</a>
<ul class="navbar-mobile__menu-dropmenu">
<li><a href="index.html" class="active">Homepage 01</a></li>
<li><a href="home-02.html">Homepage 02</a></li>
<li><a href="home-03.html">Homepage 03</a></li>
</ul>
</li>
<li class="navbar-mobile__menu-item">
<a href="#">
<span class="navbar-mobile__menu-link">
Courses
</span>
<span class="navbar-mobile__menu-dropicon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right"
>
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</span>
</a>
<ul class="navbar-mobile__menu-dropmenu">
<li><a href="course-search.html">search course list</a></li>
<li><a href="course-details.html">Course details</a></li>
<li><a href="watch.html">Watch Course</a></li>
</ul>
</li>
<li class="navbar-mobile__menu-item">
<a href="about.html">
<span class="navbar-mobile__menu-link">
About
</span>
</a>
</li>
<li class="navbar-mobile__menu-item">
<a href="#">
<span class="navbar-mobile__menu-link">
Events
</span>
<span class="navbar-mobile__menu-dropicon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right"
>
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</span>
</a>
<ul class="navbar-mobile__menu-dropmenu">
<li><a href="event-search.html">Events Search list</a></li>
<li><a href="event.html">Event Details</a></li>
</ul>
</li>
<li class="navbar-mobile__menu-item active">
<a href="#">
<span class="navbar-mobile__menu-link">
Pages
</span>
<span class="navbar-mobile__menu-dropicon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-chevron-right"
>
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</span>
</a>
<ul class="navbar-mobile__menu-dropmenu">
<li><a href="students-profile.html">Students Profile</a></li>
<li><a href="instructor-profile.html">Instructor Profile</a></li>
<li><a href="become-instructor.html">become Instructor</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="checkout.html">Check out</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="signin.html">Sign in</a></li>
<li><a href="signup.html" class="active">Sign up</a></li>
<li><a href="verify.html">Verify Email</a></li>
<li><a href="forget-password.html">Forget Password</a></li>
<li><a href="reset-password.html">Reset Password</a></li>
<li><a href="404.html">404</a></li>
<li><a href="comingsoon.html">coming soon</a></li>
</ul>
</li>
<li class="navbar-mobile__menu-item">
<a href="contact.html">
<span class="navbar-mobile__menu-link">
Contact
</span>
</a>
</li>
</ul>
</div>
</div>
<div class="nav-mobile__footer">
<ul class="social-icons social-icons--outline justify-content-center">
<li>
<a href="#">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.9507 5.29205C17.9086 4.33564 17.7539 3.67812 17.5324 3.10836C17.3038 2.50359 16.9522 1.96213 16.4915 1.51201C16.0414 1.05489 15.4963 0.699691 14.8986 0.474702C14.3255 0.253147 13.6714 0.0984842 12.715 0.0563159C11.7515 0.0105764 11.4456 0 9.00174 0C6.55791 0 6.25202 0.0105764 5.29204 0.0527447C4.33563 0.0949129 3.67811 0.249713 3.1085 0.471131C2.50358 0.699691 1.96213 1.05132 1.51201 1.51201C1.05489 1.96213 0.699827 2.50716 0.474701 3.10493C0.253147 3.67812 0.098484 4.33207 0.0563158 5.28848C0.0105764 6.25203 0 6.55792 0 9.00176C0 11.4456 0.0105764 11.7515 0.0527446 12.7115C0.0949128 13.6679 0.249713 14.3254 0.471267 14.8952C0.699827 15.4999 1.05489 16.0414 1.51201 16.4915C1.96213 16.9486 2.50715 17.3038 3.10493 17.5288C3.67811 17.7504 4.33206 17.905 5.28861 17.9472C6.24845 17.9895 6.55448 17.9999 8.99831 17.9999C11.4421 17.9999 11.748 17.9895 12.708 17.9472C13.6644 17.905 14.3219 17.7504 14.8916 17.5288C16.1012 17.0611 17.0577 16.1047 17.5254 14.8952C17.7468 14.322 17.9016 13.6679 17.9437 12.7115C17.9859 11.7515 17.9965 11.4456 17.9965 9.00176C17.9965 6.55792 17.9929 6.25203 17.9507 5.29205ZM16.3298 12.6411C16.2911 13.5202 16.1434 13.9949 16.0203 14.3114C15.7179 15.0956 15.0955 15.7179 14.3114 16.0204C13.9949 16.1434 13.5168 16.2911 12.6411 16.3297C11.6917 16.372 11.407 16.3824 9.00531 16.3824C6.60365 16.3824 6.31534 16.372 5.36937 16.3297C4.4903 16.2911 4.01559 16.1434 3.69913 16.0204C3.3089 15.8761 2.9537 15.6476 2.66539 15.3487C2.3665 15.0568 2.13794 14.7052 1.99372 14.315C1.87065 13.9985 1.72299 13.5202 1.68439 12.6447C1.64209 11.6953 1.63165 11.4104 1.63165 9.00876C1.63165 6.60709 1.64209 6.31878 1.68439 5.37295C1.72299 4.49387 1.87065 4.01917 1.99372 3.7027C2.13794 3.31234 2.3665 2.95727 2.66896 2.66883C2.9607 2.36994 3.31233 2.14138 3.7027 1.99729C4.01917 1.87422 4.49744 1.72656 5.37294 1.68783C6.32235 1.64566 6.60722 1.63508 9.00875 1.63508C11.414 1.63508 11.6987 1.64566 12.6447 1.68783C13.5238 1.72656 13.9985 1.87422 14.3149 1.99729C14.7052 2.14138 15.0604 2.36994 15.3487 2.66883C15.6476 2.96071 15.8761 3.31234 16.0203 3.7027C16.1434 4.01917 16.2911 4.49731 16.3298 5.37295C16.372 6.32236 16.3826 6.60709 16.3826 9.00876C16.3826 11.4104 16.372 11.6917 16.3298 12.6411Z"
fill="currentColor"
></path>
<path
d="M9.00188 4.37744C6.44912 4.37744 4.37793 6.44849 4.37793 9.00139C4.37793 11.5543 6.44912 13.6253 9.00188 13.6253C11.5548 13.6253 13.6258 11.5543 13.6258 9.00139C13.6258 6.44849 11.5548 4.37744 9.00188 4.37744ZM9.00188 12.0008C7.34578 12.0008 6.00244 10.6576 6.00244 9.00139C6.00244 7.34515 7.34578 6.00195 9.00188 6.00195C10.6581 6.00195 12.0013 7.34515 12.0013 9.00139C12.0013 10.6576 10.6581 12.0008 9.00188 12.0008Z"
fill="currentColor"
></path>
<path
d="M14.8876 4.19521C14.8876 4.79133 14.4043 5.27469 13.808 5.27469C13.2119 5.27469 12.7285 4.79133 12.7285 4.19521C12.7285 3.59894 13.2119 3.11572 13.808 3.11572C14.4043 3.11572 14.8876 3.59894 14.8876 4.19521Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
<li>
<a href="#">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.9955 18.0002V17.9994H18V11.3979C18 8.16841 17.3047 5.68066 13.5292 5.68066C11.7142 5.68066 10.4962 6.67666 9.99896 7.62091H9.94646V5.98216H6.3667V17.9994H10.0942V12.0489C10.0942 10.4822 10.3912 8.96716 12.3315 8.96716C14.2432 8.96716 14.2717 10.7552 14.2717 12.1494V18.0002H17.9955Z"
fill="currentColor"
></path>
<path d="M0.296875 5.98291H4.02888V18.0002H0.296875V5.98291Z" fill="currentColor"></path>
<path d="M2.1615 0C0.96825 0 0 0.96825 0 2.1615C0 3.35475 0.96825 4.34325 2.1615 4.34325C3.35475 4.34325 4.323 3.35475 4.323 2.1615C4.32225 0.96825 3.354 0 2.1615 0V0Z" fill="currentColor"></path>
</svg>
</a>
</li>
<li>
<a href="#">
<svg width="18" height="15" viewBox="0 0 18 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18 1.73137C17.3306 2.025 16.6174 2.21962 15.8737 2.31412C16.6388 1.85737 17.2226 1.13962 17.4971 0.2745C16.7839 0.69975 15.9964 1.00013 15.1571 1.16775C14.4799 0.446625 13.5146 0 12.4616 0C10.4186 0 8.77387 1.65825 8.77387 3.69113C8.77387 3.98363 8.79862 4.26487 8.85938 4.53262C5.7915 4.383 3.07687 2.91263 1.25325 0.67275C0.934875 1.22513 0.748125 1.85738 0.748125 2.538C0.748125 3.816 1.40625 4.94887 2.38725 5.60475C1.79437 5.5935 1.21275 5.42138 0.72 5.15025C0.72 5.1615 0.72 5.17613 0.72 5.19075C0.72 6.984 1.99912 8.4735 3.6765 8.81662C3.37612 8.89875 3.04875 8.93812 2.709 8.93812C2.47275 8.93812 2.23425 8.92463 2.01038 8.87512C2.4885 10.3365 3.84525 11.4109 5.4585 11.4457C4.203 12.4279 2.60888 13.0196 0.883125 13.0196C0.5805 13.0196 0.29025 13.0061 0 12.969C1.63462 14.0231 3.57188 14.625 5.661 14.625C12.4515 14.625 16.164 9 16.164 4.12425C16.164 3.96112 16.1584 3.80363 16.1505 3.64725C16.8829 3.1275 17.4982 2.47837 18 1.73137Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
<li>
<a href="#">
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M16.0427 0.885481C16.8137 1.09312 17.4216 1.70094 17.6291 2.47204C18.0148 3.88048 17.9999 6.81629 17.9999 6.81629C17.9999 6.81629 17.9999 9.73713 17.6293 11.1457C17.4216 11.9167 16.8138 12.5246 16.0427 12.7321C14.6341 13.1029 8.99996 13.1029 8.99996 13.1029C8.99996 13.1029 3.38048 13.1029 1.95721 12.7174C1.18611 12.5098 0.57829 11.9018 0.37065 11.1309C0 9.73713 0 6.80146 0 6.80146C0 6.80146 0 3.88048 0.37065 2.47204C0.578153 1.70108 1.20094 1.07829 1.95707 0.870787C3.36565 0.5 8.99983 0.5 8.99983 0.5C8.99983 0.5 14.6341 0.5 16.0427 0.885481ZM11.8913 6.80154L7.20605 9.50006V4.10303L11.8913 6.80154Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
<li>
<a href="#">
<svg width="9" height="18" viewBox="0 0 9 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.3575 2.98875H9.00075V0.12675C8.71725 0.08775 7.74225 0 6.60675 0C4.2375 0 2.6145 1.49025 2.6145 4.22925V6.75H0V9.9495H2.6145V18H5.82V9.95025H8.32875L8.727 6.75075H5.81925V4.5465C5.82 3.62175 6.069 2.98875 7.3575 2.98875Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!-- SignUp Area Starts Here -->
<section class="signup-area overflow-hidden">
<div class="container">
<div class="row align-items-center justify-content-md-center">
<div class="col-lg-5 order-2 order-lg-0">
<div class="signup-area-textwrapper">
<h2 class="font-title--md mb-0">Sign Up</h2>
<p class="mt-2 mb-lg-4 mb-3">Already have account? <a href="signin.html" class="text-black-50">Sign In</a></p>
<form action="#">
<div class="form-element success">
<div class="form-alert">
<label for="name">Full Name</label>
</div>
<div class="form-alert-input">
<input type="text" placeholder="Arif Ahmed" id="name" />
<div class="form-alert-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-check"
>
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</div>
</div>
</div>
<div class="form-element error">
<div class="form-alert">
<label for="email">Email</label>
<span>*please enter a valid email</span>
</div>
<div class="form-alert-input">
<input type="email" placeholder="[email protected]" id="email" />
<div class="form-alert-icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-alert-circle"
>
<circle cx="12" cy="12" r="10"></circle>
<line x1="12" y1="8" x2="12" y2="12"></line>
<line x1="12" y1="16" x2="12.01" y2="16"></line>
</svg>
</div>
</div>
</div>
<div class="form-element active">
<label for="password" class="w-100" style="text-align: left;">password</label>
<div class="form-alert-input">
<input type="password" placeholder="Type here..." id="password" />
<div class="form-alert-icon" onclick="showPassword('password',this)">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-eye"
>
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>
</div>
</div>
</div>
<div class="form-element">
<label for="confirm-password" class="w-100" style="text-align: left;">Confirm password</label>
<div class="form-alert-input">
<input type="password" placeholder="Type here..." id="confirm-password" />
<div class="form-alert-icon" onclick="showPassword('confirm-password',this)">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-eye"
>
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>
</div>
</div>
</div>
<div class="form-element d-flex align-items-center terms">
<input class="checkbox-primary me-1" type="checkbox" id="agree" />
<label for="agree" class="text-secondary mb-0">Accept the <a href="#" style="text-decoration: underline;">Terms</a> and <a href="#" style="text-decoration: underline;">Privacy Policy</a></label>
</div>
<div class="form-element">
<button type="submit" class="button button-lg button--primary w-100">Sign UP</button>
</div>
<span class="d-block text-center text-secondary">or sign up with</span>
<div class="d-flex align-items-center flex-wrap mt-3 signinButtons">
<a href="#" class="d-flex text-secondary align-items-center justify-content-center signup-with border fb rounded-1">
<svg class="me-2" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18 9C18 4.02891 13.9711 0 9 0C4.02891 0 0 4.02891 0 9C0 13.9711 4.02891 18 9 18C9.05273 18 9.10547 18 9.1582 17.9965V10.9934H7.22461V8.73984H9.1582V7.08047C9.1582 5.15742 10.3324 4.10977 12.048 4.10977C12.8707 4.10977 13.5773 4.16953 13.7812 4.19766V6.20859H12.6C11.6684 6.20859 11.4855 6.65156 11.4855 7.30195V8.73633H13.718L13.4262 10.9898H11.4855V17.652C15.2473 16.5727 18 13.1098 18 9V9Z"
fill="#0078FF"
></path>
</svg>
Facebook
</a>
<a href="#" class="d-flex text-secondary align-items-center justify-content-center signup-with border google rounded-1">
<svg class="me-2" width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clipOne)">
<path
d="M3.98918 11.378L3.36263 13.717L1.07258 13.7654C0.388195 12.496 0 11.0437 0 9.50034C0 8.00793 0.362953 6.60055 1.00631 5.36133H1.0068L3.04559 5.73511L3.9387 7.76166C3.75177 8.30661 3.64989 8.89161 3.64989 9.50034C3.64996 10.161 3.76963 10.794 3.98918 11.378Z"
fill="#FBBB00"
></path>
<path
d="M17.8426 7.81836C17.946 8.36279 17.9999 8.92504 17.9999 9.49967C17.9999 10.144 17.9321 10.7725 17.8031 11.3788C17.365 13.4419 16.2202 15.2434 14.6343 16.5182L14.6338 16.5177L12.0659 16.3867L11.7024 14.1179C12.7547 13.5007 13.5771 12.535 14.0103 11.3788H9.19775V7.81836H14.0805H17.8426Z"
fill="#518EF8"
></path>
<path
d="M14.6341 16.5183L14.6346 16.5188C13.0922 17.7585 11.133 18.5003 9.00017 18.5003C5.57275 18.5003 2.59288 16.5846 1.07275 13.7654L3.98935 11.3779C4.74939 13.4064 6.70616 14.8503 9.00017 14.8503C9.9862 14.8503 10.91 14.5838 11.7026 14.1185L14.6341 16.5183Z"
fill="#28B446"
></path>
<path
d="M14.7447 2.57197L11.8291 4.95894C11.0087 4.44615 10.039 4.14992 9.00003 4.14992C6.65409 4.14992 4.66073 5.66013 3.93876 7.76131L1.00684 5.36098H1.00635C2.50421 2.47307 5.52167 0.5 9.00003 0.5C11.1838 0.5 13.186 1.27787 14.7447 2.57197Z"
fill="#F14336"
></path>
</g>
<defs>
<clipPath>
<rect width="18" height="18" fill="white" transform="translate(0 0.5)"></rect>
</clipPath>
</defs>
</svg>
Google
</a>
<a href="#" class="d-flex text-secondary align-items-center justify-content-center signup-with border twitter rounded-1">
<svg class="me-2" width="22" height="19" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M22 2.63092C21.1819 2.99231 20.3101 3.23185 19.4012 3.34815C20.3363 2.786 21.0499 1.90262 21.3854 0.837846C20.5136 1.36123 19.5511 1.73092 18.5254 1.93723C17.6976 1.04969 16.5179 0.5 15.2309 0.5C12.7339 0.5 10.7236 2.54092 10.7236 5.04292C10.7236 5.40292 10.7539 5.74908 10.8281 6.07862C7.0785 5.89446 3.76063 4.08477 1.53175 1.328C1.14262 2.00785 0.914375 2.786 0.914375 3.62369C0.914375 5.19662 1.71875 6.59092 2.91775 7.39815C2.19313 7.38431 1.48225 7.17246 0.88 6.83877C0.88 6.85262 0.88 6.87062 0.88 6.88862C0.88 9.09569 2.44337 10.9289 4.4935 11.3512C4.12637 11.4523 3.72625 11.5008 3.311 11.5008C3.02225 11.5008 2.73075 11.4842 2.45712 11.4232C3.0415 13.2218 4.69975 14.5442 6.6715 14.5871C5.137 15.7958 3.18863 16.5242 1.07938 16.5242C0.7095 16.5242 0.35475 16.5075 0 16.4618C1.99787 17.7592 4.36562 18.5 6.919 18.5C15.2185 18.5 19.756 11.5769 19.756 5.576C19.756 5.37523 19.7491 5.18139 19.7395 4.98892C20.6346 4.34923 21.3867 3.55031 22 2.63092Z"
fill="#03A9F4"
></path>
</svg>
Twitter
</a>
</div>
</form>
</div>
</div>
<div class="col-lg-7 order-1 order-lg-0">
<div class="signup-area-image">
<img src="dist/images/signup/Illustration.png" alt="Illustration Image" class="img-fluid" />
</div>
</div>
</div>
</div>
</section>
<!-- SignUp Area Ends Here -->
<!-- Dot Images Starts Here -->
<div class="dot-images">
<img src="dist/images/shape/dots/dots-img-05.png" alt="shape" class="img-fluid first-dotimage" />
<img src="dist/images/shape/dots/dots-img-07.png" alt="shape" class="img-fluid second-dotimage" />
</div>
<!-- Dot Images Ends Here -->
<script src="src/js/jquery.min.js"></script>
<script src="src/js/bootstrap.bundle.min.js"></script>
<script src="src/scss/vendors/plugin/js/isotope.pkgd.min.js"></script>
<script src="src/scss/vendors/plugin/js/jquery.magnific-popup.min.js"></script>
<script src="src/scss/vendors/plugin/js/slick.min.js"></script>
<script src="src/scss/vendors/plugin/js/jquery.nice-select.min.js"></script>
<script src="src/js/app.js"></script>
<script src="dist/main.js"></script>
</body>
</html>