-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathburger.html
More file actions
316 lines (265 loc) · 12.7 KB
/
burger.html
File metadata and controls
316 lines (265 loc) · 12.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>FoodU</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/shop-homepage.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="img/logo.png" type="image/png" />
<script src="scripts/script.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/core.js">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<img id="logo" src="img/logo_transparent.png" />
<a class="navbar-brand" href="index.html">FoodU</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<!-- Page Heading -->
<h1 class="my-4">Burgers
<small>tasty.</small>
</h1>
<!-- Project One -->
<div id="item_two" class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/burger_1.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Chicago Burger</h3>
<small>Pizza Garden</small>
<p>With cheese, lettuce, BBQ sauce, onion.</p>
<button id="done_button" class="btn btn-primary" type="button" data-toggle="modal" data-target="#myModal1">Order now!</button>
<!-- Full Height Modal Right -->
<div id="myModal1" class="modal fade right" id="fullHeightModalRight" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<!-- Add class .modal-full-height and then add class .modal-right (or other classes from list above) to set a position to the modal -->
<div class="modal-dialog modal-full-height modal-right" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100" >Chicago Burger</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p><strong>Total: 9.99$</strong></p>
<hr>
<p class="bold_text"> Enter delivery address: </p>
<form name="theform" method="post" role="form">
<label class="bold_text" for="address">Address: </label><input type="text" onkeypress="check()" id="address" class="form-control" placeholder="Please enter your address *" required />
<label class="bold_text" for="city">City: </label>
<select class="form-control" id="sel1">
<option >Tetovo</option>
<option >Skopje</option>
</select>
<label class="bold_text" for="phone-number">Phone number: </label><input type="text" onkeypress="check()" id="phone" class="form-control" placeholder="Please enter your phone number *" required />
</form>
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<a href="thankyou.html"><button id="submitbutton" type="submit" class="btn btn-primary" disabled="disabled" >Order!</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Two -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/burger_2.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Garden Burger</h3>
<small>Pizza Garden</small>
<p>With pickles, onion, tomaotes, lettuce, ketchup.</p>
<button id="done_button" class="btn btn-primary" type="button" data-toggle="modal" data-target="#myModal2">Order now!</button>
<!-- Full Height Modal Right -->
<div id="myModal2" class="modal fade right" id="fullHeightModalRight" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<!-- Add class .modal-full-height and then add class .modal-right (or other classes from list above) to set a position to the modal -->
<div class="modal-dialog modal-full-height modal-right" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100">Garden Burger</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p><strong>Total: 7.99$</strong></p>
<hr>
<p class="bold_text">Enter delivery address: </p>
<form method="post" role="form">
<label class="bold_text" for="address">Address: </label><input type="text" onkeypress="check()" id="address1" class="form-control" placeholder="Please enter your address *" required="required" />
<label class="bold_text" for="city">City: </label>
<select class="form-control" id="sel1">
<option >Tetovo</option>
<option >Skopje</option>
</select>
<label class="bold_text" for="phone-number">Phone number: </label><input type="text" onkeypress="check1()" id="phone1" class="form-control" placeholder="Please enter your phone number *" required="required" />
</form>
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<a href="thankyou.html"><button id="submitbutton1" type="button" class="btn btn-primary" disabled >Order!</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Three -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/burger_3.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>King Burger</h3>
<small>Fratteli</small>
<p>With cheese, pickles, lettuce, ketchup, sweet potatoes.</p>
<button id="done_button" class="btn btn-primary" type="button" data-toggle="modal" data-target="#myModal3">Order now!</button>
<!-- Full Height Modal Right -->
<div id="myModal3" class="modal fade right" id="fullHeightModalRight" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<!-- Add class .modal-full-height and then add class .modal-right (or other classes from list above) to set a position to the modal -->
<div class="modal-dialog modal-full-height modal-right" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100">King Burger</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p><strong>Total: 7.99$</strong></p>
<hr>
<p class="bold_text">Enter delivery address: </p>
<form method="post" role="form">
<label class="bold_text" for="address">Address: </label><input onkeypress="check2()" type="text" id="address2" class="form-control" placeholder="Please enter your address *" required="required" />
<label class="bold_text" for="city">City: </label>
<select class="form-control" id="sel1">
<option>Tetovo</option>
<option>Skopje</option>
</select>
<label class="bold_text" for="phone-number">Phone number: </label><input onkeypress="check2()" type="text" id="phone2" class="form-control" placeholder="Please enter your phone number *" required="required" />
</form>
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<a href="thankyou.html"><button id="submitbutton2" type="button" class="btn btn-primary" disabled>Order!</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Project Four -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/burger_4.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Cheese Burger</h3>
<small>Fratteli</small>
<p>With extra cheese, lettuce, tomaotes, french fries.</p>
<button id="done_button" class="btn btn-primary" type="button" data-toggle="modal" data-target="#myModal4">Order now!</button>
<!-- Full Height Modal Right -->
<div id="myModal4" class="modal fade right" id="fullHeightModalRight" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<!-- Add class .modal-full-height and then add class .modal-right (or other classes from list above) to set a position to the modal -->
<div class="modal-dialog modal-full-height modal-right" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title w-100">Cheese Burger</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p><strong>Total: 9.99$</strong></p>
<hr>
<p class="bold_text">Enter delivery address: </p>
<form method="post" role="form">
<label class="bold_text" for="address">Address: </label><input onkeypress="check3()" type="text" id="address3" class="form-control" placeholder="Please enter your address *" required="required" />
<label class="bold_text" for="city">City: </label>
<select class="form-control" id="sel1">
<option>Tetovo</option>
<option>Skopje</option>
</select>
<label class="bold_text" for="phone-number">Phone number: </label><input onkeypress="check3()" type="text" id="phone3" class="form-control" placeholder="Please enter your phone number *" required="required" />
</form>
</div>
<div class="modal-footer justify-content-center">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<a href="thankyou.html"><button type="button" id="submitbutton3" class="btn btn-primary" disabled>Order!</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Pagination -->
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<div class="center">
<a href="https://www.facebook.com/" class="fa fa-facebook"></a>
<a href="https://twitter.com/" class="fa fa-twitter"></a>
<a href="https://www.google.com/" class="fa fa-google"></a>
<a href="https://www.youtube.com/" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/" class="fa fa-instagram"></a>
<a href="https://vimeo.com/" class="fa fa-vimeo"></a>
</div>
<p id="copyright" class="text-center text-white">Copyright © FoodU</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>