-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsignup.html
128 lines (118 loc) · 5.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="style.css" />
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
</head>
<body class="d-flex flex-column">
<div class="container my-5">
<div>
<a href="/" class="logo">
<h1 class="text-center">e-Shopper</h1>
</a>
</div>
<div class="d-flex justify-content-center">
<div class="login-box m-auto mt-5 col-4">
<h3 class="text-center">Sign Up</h3>
<form class="needs-validation" novalidate="" action="">
<div>
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" placeholder="Full Name" required="">
<div class="invalid-feedback">
Name required
</div>
</div>
<div>
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" placeholder="Email" required="">
<div class="invalid-feedback">
Valid Email required
</div>
</div>
<div>
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" placeholder="password" required="" minlength="6">
<div class="invalid-feedback">
Valid Password required (min 6 chars)
</div>
</div>
<input type="submit" class="form-control btn-success" value="Create Account">
</form>
<a href="/login.html"> Have an account? Login Here</a>
</div>
</div>
</div>
<div class="footer mt-auto bg-dark text-light">
<div class="container py-3">
<div class="row d-flex footer-items">
<div class="col-lg-4">
<h5>Categories</h5>
<ul>
<li><a href="#">Watches</a></li>
<li><a href="#">Mobiles</a></li>
<li><a href="#">Tablets</a></li>
<li><a href="#">Audio</a></li>
<li><a href="#">Drones</a></li>
</ul>
</div>
<div class="col-lg-4">
<h5>Useful Links</h5>
<ul>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Mission</a></li>
</ul>
</div>
<div class="col-lg-4">
<h5>Get Updates</h5>
<div class="d-flex subscribe">
<input type="text" class="form-control">
<button class="btn btn-warning">Subscribe</button>
</div>
<div class="mt-2">
<div class="btn-group me-2 social-icons" role="group" aria-label="First group">
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-facebook"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-instagram"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-twitter"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-linkedin"></i>
</button>
</div>
</div>
</div>
</div>
<div class="row text-center">
<span>@coderdost</span>
</div>
</div>
</div>
<!-- End of Footer -->
<script src="app.js"></script>
</body>
</html>