-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
279 lines (228 loc) · 9.91 KB
/
checkout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> bootstrap exercises </title>
<!--latest compiled and minified CSS-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/c846c1f9b0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/style/style.css">
</head>
<body>
<!--HEADER - Matt-->
<div class="row header">
<div class="col-4">
<img src="assets/images/Logo.png" alt="Logo" class="logo" height="100" width="auto">
</div>
<div class="col-4">
</div>
<div class="col-2">
<nav class="navbar navbar-expand-xs navbar-light mt-4">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">My Account</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resto.html">Categories</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="col-2">
<a href="checkout.html"><img src="assets/images/checkout.png" alt="Checkout" class="checkout" height="30" width="auto"></a>
</div>
</div>
<div class="col-md-4 container bg-default">
<h4 class="my-4">
Billing Address
</h4>
<form>
<div class="form-row">
<div class="col-md-6 form-group">
<label for="firstname">First Name</label>
<input type="text" class="form-control" id="firstname" placeholder="First Name">
</div>
<div class="col-md-6 form-group">
<label for="lastname">Last Name</label>
<input type="text" class="form-control" id="lastname" placeholder="Last Name">
</div>
</div>
<div class="form-group">
<label for="username">Username</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">@</span>
</div>
<input type="text" class="form-control" id="username" placeholder="Username">
</div>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="you@example.com" >
</div>
<div class="form-group">
<label for="adress">Address</label>
<input type="text" class="form-control" id="adress" placeholder="1234 Main Street" >
<div class="invalid-feedback">
Please enter your shipping address.
</div>
</div>
<div class="form-group">
<label for="address2">Address 2
<span class="text-muted">(Optional)</span>
</label>
<input type="text" class="form-control" id="adress2" placeholder="Flat No">
</div>
<div class="row">
<div class="col-md-4 form-group">
<label for="country">Country</label>
<select type="text" class="form-control" id="country">
<option value>Choose...</option>
<option>United Kingdom</option>
</select>
</div>
<div class="col-md-4 form-group">
<label for="city">City</label>
<select type="text" class="form-control" id="city">
<option value>Choose...</option>
<option>London</option>
</select>
</div>
<div class="col-md-4 form-group">
<label for="postcode">Postcode</label>
<select type="text" class="form-control" id="postcode">
<option value>Choose...</option>
<option>NW6 2LS</option>
</select>
</div>
</div>
<hr>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="shipping-adress">
Shipping address is the same as my billing address
<label for="shipping-adress" class="form-check-label"></label>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="same-adress">
Save this information for next time
<label for="same-adress" class="form-check-label"></label>
</div>
<hr>
<h4 class="mb-4">Payment</h4>
<div class="form-check">
<input type="radio" class="form-check-input" id="credit" name="payment-method">
<label for="credit" class="form-check-label">Credit Card</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" id="debit" name="payment-method">
<label for="debit" class="form-check-label">Debit Card</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" id="paypal" name="payment-method" >
<label for="paypal" class="form-check-label">PayPal</label>
</div>
<div class="row mt-4">
<div class="col-md-6 form-group">
<label for="card-name">Name on card</label>
<input type="text" class="form-control" id="card-name">
</div>
<div class="col-md-6 form-group">
<label for="card-no">Card Number</label>
<input type="text" class="form-control" id="card-no">
</div>
</div>
<div class="form-row">
<div class="col-md-5 form-group">
<label for="expiration">Expire Date</label>
<input type="text" class="form-control" id="card-name">
</div>
<div class="col-md-5 form-group">
<label for="ccv-no">Security Number</label>
<input type="text" class="form-control" id="sec-no">
</div>
</div>
<hr class="mb-4">
<button class="btn btn-primary bt-lg btn-block" type="submit"><a href="./tracking.html">Continue to Checkout and Track your Order</a></button>
</form>
</div>
<!--FOOTER - Max-->
<footer class="page-footer">
<div class="container-fluid blue-color">
<div class="row py-4">
<div class="col-3 offset-2">
<!--visible tous le temps-->
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a href="https://www.facebook.com/" class="fa fa-facebook text-light"></a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/explore" class="fa fa-twitter text-light"></a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com" class="fa fa-linkedin text-light"></a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/" class="fa fa-instagram text-light"></a>
</li>
</ul>
</div>
<div class="col-2">
<div class="footer-copyright text-light py-4">
© 2020 Copyright:Eat-Hub The Dream Team
</div>
</div>
<!--bouton clicable-->
<div class="col-3 offset-2">
<button class="btn btn-light" type="button" data-toggle="collapse" data-target="#collapseExample"
aria-expanded="false" aria-controls="collapseExample">
Learn more!
</button>
</div>
<!--Non visible-->
<div class="collapse" id="collapseExample">
<div class="card card-body">
<div class="container-fluid">
<div class="row">
<div class="col-4">
<h1 class="display-5">Découvrir Eat-Hub</h1>
<p><a href="#" class="footer-link text-light">À propos</a></p>
<p><a href="#" class="footer-link text-light">Blog Foodscene</a></p>
<p><a href="#" class="footer-link text-light">Blog Tech</a></p>
<p><a href="#" class="footer-link text-light">Blog Design</a></p>
<p><a href="#" class="footer-link text-light">Nous rejoindre</a></p>
<p><a href="#" class="footer-link text-light">Inscription restaurant</a></p>
<p><a href="#" class="footer-link text-light">Devenez livreur</a></p>
</div>
<div class="col-4">
<h1 class="display-5">Mentions légales</h1>
<p><a href="#" class="footer-link text-light">Mentions légales</a></p>
<p><a href="#" class="footer-link text-light">Confidentialité</a></p>
<p><a href="#" class="footer-link text-light">Cookies</a></p>
</div>
<div class="col-4">
<h1 class="display-5">Aider</h1>
<p><a href="#" class="footer-link text-light">Nous contacter</a></p>
<p><a href="#" class="footer-link text-light">FAQ</a></p>
<p><a href="#" class="footer-link text-light">Types de cuisine</a></p>
<p><a href="#" class="footer-link text-light">Plan du site</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--Footer end-->
</body>
</html>