-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
199 lines (194 loc) · 8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/f034b3503b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./UI/css/style.css" />
<title>Manila Shop</title>
</head>
<body>
<!-- Navigation bar -->
<header class="navbar">
<nav>
<!--Logo-->
<div class="logo">
<a href="./index.html">
<!-- <img src="images/logo.png" alt="Logo"> -->
<h4>Manila Shop</h4>
</a>
</div>
<label for="btn" class="icon">
<span class="menu__bars"><img src="/UI/icons/iconmonstr-menu-5.svg"></span>
</label>
<input type="checkbox" id="btn">
<!--Start of Navigation-Links-->
<ul>
<li>
<!-- <label>Catalogue</label> -->
<label for="btn-2" class="show">Catalog ></label>
<a href="#">Catalog</a>
<input type="checkbox" id="btn-2">
<ul>
<li>
<label for="btn-3" class="show">Phones & Tablets ></label>
<a href="#">
<!-- <img src="images/phones.svg" alt="Phones & Tablets"> -->
Phones & Tablets
</a>
<input type="checkbox" id="btn-3">
<ul>
<li><a href="#">Phones</a></li>
<li><a href="#">Tablets</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</li>
<li>
<label for="btn-4" class="show">Home & Office ></label>
<a href="#">
<!-- <img src="images/home & office.jpg" alt="Home & Office"> -->
Home & Office
</a>
<input type="checkbox" id="btn-4">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Office</a></li>
<li><a href="#">Other Utilities</a></li>
</ul>
</li>
<li>
<label for="btn-5" class="show">Health & Beauty ></label>
<a href="#">
<!-- <img src="images/health & beauty.png" alt="Health & Beauty"> -->
Health & Beauty
</a>
<input type="checkbox" id="btn-5">
<ul>
<li>
<a href="#">Health</a>
</li>
<li>
<a href="#">Beauty</a>
</li>
<li>
<a href="#">Saloon</a>
</li>
</ul>
</li>
<li>
<label for="btn-6" class="show">Games & Entertainment ></label>
<a href="#">
<!-- <img src="images/games.svg" alt="Games & Entertainment"> -->
Games & Entertainment
</a>
<input type="checkbox" id="btn-6">
<ul>
<li>
<a href="#">Gaming consoles</a>
</li>
<li>
<a href="#">Games</a>
</li>
<li>
<a href="#">Software</a>
</li>
</ul>
</li>
<li>
<label for="btn-7" class="show">Photography ></label>
<a href="#">
<!-- <img src="images/photo.svg" alt="Photo"> -->
Photography
</a>
<input type="checkbox" id="btn-7">
<ul>
<li><a href="#">Cameras</a></li>
<li><a href="#">Lenses</a></li>
<li><a href="#">Accessories</a></li>
</ul>
</li>
</ul>
</li>
<li>
<label for="btn-9" class="show">Account ></label>
<a href="#">Account </a>
<input type="checkbox" id="btn-9">
<ul>
<li><a href="./signup.html">Create account</a></li>
<li><a href="./login.html">Log-in</a></li>
</ul>
</li>
<li>
<!-- <span id="search-icon" class="nav-icon"><i class="fas fa-search" onclick=""></i></span> -->
<!-- <label for="btn-10" class="show"></label> -->
<div class="search-box">
<input class="search-text" type="text" name="search" placeholder="search.." />
<a class="search-btn" href="#">
<i class="fas fa-search" onclick=""></i>
</a>
</div>
<!-- <input type="checkbox" id="btn-10"> -->
</li>
<li>
<div class='cart-btn'>
<span class="nav-icon"><i class="fas fa-cart-plus"></i></span>
</div>
</li>
</ul>
</nav>
</header>
<!--End of Header Section-->
<br>
<!-- End of Navigation bar -->
<div class="container">
<form id="form" class="form">
<h2>Join Us! <br />Create Your Account Now!</h2>
<div class="form-control">
<label for="userName">Username:</label>
<input
type="text"
id="userName"
placeholder="Enter your username.."
/>
<small>Error</small>
</div>
<div class="form-control">
<label for="email">Email:</label>
<input type="text" id="email" placeholder="Enter your email.." />
<small>Error</small>
</div>
<div class="form-control">
<label for="password">Password:</label>
<input
type="password"
id="password"
placeholder="Enter your password.."
/>
<small>Error</small>
</div>
<div class="form-control">
<label for="password2">Confirm Password:</label>
<input
type="password"
id="password2"
placeholder="Enter your password again.."
/>
<small>Error</small>
</div>
<button id="signup-btn" type="submit" onclick="window.location.href='./products.html'">SIGNUP</button>
<span>Already have an account? <a href="./login.html">LogIn</a></span>
</form>
</div>
<script src="./UI/scripts/slide_background.js"></script>
<script>
slide_background("body",
{
slide: ["UI/images/bags.jpg", "UI/images/hero-bcg.jpeg", "UI/images/product-2.jpeg", "UI/images/product-4.jpeg", "UI/images/product-5.jpeg", "UI/images/product-6.jpeg", "UI/images/product-7.jpeg", "UI/images/product-8.jpeg"],
delay: [2000, 2000, 2000, 2000, 2000]
}
);
</script>
<script src="./UI/scripts/script.js"></script>
<script src="./UI/scripts/index.js"></script>
</body>
</html>