-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsign_up.html
More file actions
143 lines (131 loc) · 4.97 KB
/
sign_up.html
File metadata and controls
143 lines (131 loc) · 4.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Quality healthy food delivered to you very fast">
<meta name="keywords" content="fast food, affordable food, quality food">
<meta name="author" content="Gabriel Machel">
<title>Fast-Food-Fast</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./assets/css/registration.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Fast Food Fast</h1>
</div>
<nav class="menu">
<ul id="menu-list">
<li class="current">
<a href="index.html">Home</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div id="signup">
<div class="container">
<div class="box">
<h2>Sign Up!</h2>
<form>
<div class="inputBox">
<input type="text" name="" required>
<label>Enter First Name</label>
</div>
<div class="inputBox">
<input type="text" name="" required>
<label>Enter Last Name</label>
</div>
<div class="inputBox">
<input type="text" name="" required>
<label>Enter Email Address</label>
</div>
<div class="inputBox">
<input type="password" name="" required>
<label>Enter Password</label>
</div>
<select id="ph">
<option>+251</option>
<option>+252</option>
<option>+253</option>
<option>+254</option>
<option>+255</option>
<option>+256</option>
<option>+257</option>
<option>+258</option>
<option>+259</option>
<option>+260</option>
</select>
<input type="number" name="mum" placeholder="Enter Cell Number" id="phone"><br><br>
<input type="radio" name="gender" id="rd"> <span id="but">Male</span>
<input type="radio" name="gender" id="rd"> <span id="but">Female</span><br><br>
<input type="submit" value="register" id="butt">
</form>
<p>Already a user? <a href="/login.html">LogIn</a></p>
</div>
</div>
</div>
<!-- FOOTER -->
<footer id="footer">
<div class="container">
<div class="bottom">
<h2>City</h2><br>
<p>Nairobi</p>
<p>Mombasa</p>
<p>Upper Hill</p>
<p>Gigiri</p>
<p>Riverside</p>
</div>
<div class="bottom">
<h2>Cuisines</h2><br>
<p>Chicken in Nairobi</p>
<p>Burger in Nairobi</p>
<p>African Food in Nairobi</p>
<p>Barbecue in Nairobi</p>
<p>Seafood in Nairobi</p>
<p>Pasta in Nairobi</p>
<p>Cakes & Pastries in Nairobi</p>
<p>Salad in Nairobi</p>
<p>Halal in Nairobi</p>
<p>Chinese in Nairobi</p>
<p>Pizza in Nairobi</p>
<p>Indian in Nairobi</p>
</div>
<div class="bottom">
<h2>Popular restaurants</h2><br>
<p>KFC Delivery</p>
<p>Big Square</p>
<p>Java House</p>
<p>Steers</p>
<p>Debonairs</p>
<p>Pizza Mojo</p>
<p>Nyama Mama</p>
<p>ArtCaffe</p>
<p>Brew Bistro</p>
<p>Thai Star</p>
<p>Mambo Italia</p>
<p>Absolute Juice</p>
<p>The Vista Restaurant</p>
<p>Clay Oven</p>
<p>All restaurants near me</p>
</div>
<div class="bottom">
<h2>Fast Food Fast</h2><br>
<p>About Us</p>
<p>FAQs & Contact</p>
<p>Terms and Conditions</p>
<p>Privacy Policy</p>
</div>
<div class="copyright">
Fast Food Fast, Copyright © 2018
</div>
</div>
</footer>
<script src="./assets/js/index.js"></script>
</body>
</html>