-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
323 lines (264 loc) · 11.4 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
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
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/checkout_styles/styles.css">
<link rel="stylesheet" href="styles/top_of_website.css" />
<link rel="stylesheet" href="styles/body_of_website.css" />
<link rel="stylesheet" href="styles/footer.css" />
<link rel="stylesheet" href="styles/copyright.css" />
<link rel="stylesheet" href="styles/cart.css" />
<link rel="stylesheet" href="styles/carousel.css">
<link rel="stylesheet" href="styles/maps_modal.css">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>iFood Clone Checkout</title>
</head>
<body>
<div class="top_of_the_page">
<div class="header_container">
<img src="icons/checkout/burger.svg" alt="" id="burger">
<a id="home" href="index.html"> <img class="logo" src="icons/logo.svg" alt="iFood" /></a>
<div class="search_bar">
<input
id="searchbox"
class="search_box"
type="text"
placeholder= "Caută restaurante"
/>
<label class="search_icon" for="search_box">
<img class="" src="icons/search.svg" alt="Search" />
</label>
</div>
<div class="header_elements">
<div class="address_pointer" style="display: none;">
<div class="address">
<label class="location_icon" for="address">
<img src="icons/location.svg" alt=" " />
</label>
<span id="header.address" class="user_address"> strada Păcii 10 </span>
</div>
</div>
<select id="vanilla-i18n-toggler" class="language_pointer">
<option class="language">Ro</option>
<option class="language">Ru</option>
<option class="language">En</option>
</select>
<div style="display: none;" class="language_pointer">
<div class="language">
<label for="language"> RO </label>
</div>
</div>
<div class="user_pointer">
<a id="link_to_my_profile" href="checkout.html">
<div class="user_profile">
<img src="icons/profile-icon.svg" alt="" />
<span class="user_name" class="user_name">Mihai</span>
</div>
</a>
</div>
<div id="cart_button" class="cart cart_is_empty">
<button>
<span id="cart_icon" alt=""></span>
<span id="cart_button_price">135 MDL</span>
</button>
</div>
</div>
</div>
</div>
<div class="checkout_container">
<div class="navigation_container">
<div class="title"> <span>Account</span> </div>
<a class="checkout_tab active" href="checkout.html">
<span class="profile_img">
<img src="icons/checkout/prof.svg" alt="">
</span>
<span class="tab_label">Developer's profile</span>
</a>
<a class="checkout_tab" href="checkout/orders.html">
<span class="profile_img">
<img src="icons/checkout/order-history.svg" alt="">
</span>
<span class="tab_label">My orders</span>
</a>
</div>
<div class="content_container">
<div class="content_title">
<span>Developer's profile</span>
</div>
<div class="myinfo">
<span>Personal data </span>
</div>
<div class="persdata_container">
<div class="personal_data">
<div class="title">
<span>Last Name</span>
</div>
<div class="info">
<span>Cujba</span>
</div>
</div>
<div class="personal_data">
<div class="title">
<span>First Name</span>
</div>
<div class="info">
<span>Mihai</span>
</div>
</div>
<div class="personal_data">
<div class="title">
<span>E-mail</span>
</div>
<div class="info">
<span> <a href="mailto: [email protected]">[email protected]</a> </span>
</div>
</div>
<div class="personal_data">
<div class="title">
<span>Phone</span>
</div>
<div class="info">
<span><a href="tel: +37369385886">(+373) 69 385 886</a></span>
</div>
</div>
</div>
<button class="contact_me">
<a href="https://github.com/KevinC37?tab=repositories" target="_blank">My github</a>
</button>
</div>
</div>
<!-------------------------------------------------------------->
<!-----------------------FOOTER START--------------------------->
<!-------------------------------------------------------------->
<div class="footer_main">
<!----------FOOTER CONTAINER--------------->
<div class="footer_container">
<!---------FOOTER ROW START--------->
<div class="footer_row">
<span id="help.title" class="footer_row_title">Ajutor</span>
<a id="help.delivery" class="footer_row_links" href="#">Livrare</a>
<span class="footer_row_title">Powered By</span>
<div class="sponsors">
<img id="iticket_logo_sponsors" src="sponsors/i_ticket.svg"
alt="iTicket">
<img
id="fusionWorks_logo_sponsors"
src="sponsors/fusion_works_2.svg"
alt="Fusion Works"
/>
</div>
</div>
<!---------FOOTER ROW END--------->
<!---------FOOTER ROW START--------->
<div class="footer_row">
<span class="footer_row_title">iFood</span>
<a id="ifood.about" class="footer_row_links" href="#">Despre noi</a>
<a id="ifood.become_courier" class="footer_row_links" href="#">Devino curier</a>
<a id="ifood.become_partner" class="footer_row_links" href="#">Devino partener</a>
<a id="ifood.mastercard_promo" class="footer_row_links" href="#">Promo Mastercard</a>
</div>
<!---------FOOTER ROW END--------->
<!---------FOOTER ROW START--------->
<div class="footer_row">
<span id="legal.title" class="footer_row_title">Juridic</span>
<a id="legal.terms" class="footer_row_links" href="#">Termeni și condiții</a>
<a id="legal.confidentiality" class="footer_row_links" href="#"
>Politica de confidențialitate</a
>
<a id="legal.cookies" class="footer_row_links" href="#">Politica Cookies</a>
</div>
<!---------FOOTER ROW END--------->
<!---------FOOTER ROW START--------->
<div class="footer_row">
<span id="support.title" class="footer_row_title">Suport</span>
<a id="support.phone" class="footer_row_links" href="#"
>Telefon:
<span>(022) 000 100</span>
</a>
<a id="support.email" class="footer_row_links" href="#"
>Email:
<span>[email protected]</span>
</a>
<div class="footer_row_links">
<a href="#"><img src="social_media/PlayMarket.svg" alt="" /></a>
<a href="#"><img src="social_media/AppStore.svg" alt="" /></a>
</div>
<span id="subscribe" class="footer_row_title">Abonează-te</span>
<div class="footer_row_links social_media">
<a href="#"><img src="social_media/facebook.svg" alt="" /></a>
<a href="#"><img src="social_media/instagram.svg" alt="" /></a>
<a href="#"><img src="social_media/youtube.svg" alt="" /></a>
</div>
</div>
<!---------FOOTER ROW END--------->
</div>
</div>
<!-------------------------------------------------------------->
<!-----------------------COPYRIGHT--------------------------->
<!-------------------------------------------------------------->
<div class="copyright_main">
<div class="copyright_container">
<span>© 2021 iFood. <span id="rights_reserved" >Toate drepturile sunt rezervate.</span> </span>
<div class="credit_card_issuers">
<img class="mastercard_secure" src="credit_card_issuers/mastercard_secure_code.svg" alt="" />
<img src="credit_card_issuers/mastercard.webp" alt="" />
<img class="visa_verified" src="credit_card_issuers/verified_by_visa.svg" alt="" />
<img src="credit_card_issuers/visa.svg" alt="" />
</div>
</div>
</div>
<!-------------------------------------------------------------->
<!-----------------------CART MODAL----------------------------->
<!-------------------------------------------------------------->
<div id="cart_modal" style="display: none;" class="body_container">
<div id="cart_modal_container" class="cart_modal_container">
<div id="cart_modal_header" class="cart_modal_header">
<span id="header.cartbutton" >Coșul meu</span>
<div id="close_modal" class="close_icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
>
<path
fill="#E8EDF6"
fill-rule="evenodd"
d="M11.446 10l7.847 7.847c.39.39.386 1.028 0 1.413l-.033.034a.998.998 0 0 1-1.414-.001L10 11.446l-7.847 7.847c-.39.39-1.028.386-1.413 0l-.034-.033a.998.998 0 0 1 .001-1.413L8.553 10 .707 2.153a1.004 1.004 0 0 1 0-1.413L.74.706a.998.998 0 0 1 1.413.001L10 8.554 17.846.707a1.004 1.004 0 0 1 1.414 0l.033.033a.997.997 0 0 1 0 1.413L11.446 10z"
/>
</svg>
</div>
</div>
<div id="cart_modal_body">
<div id="all_cart_items" class="cart_modal_scroll_body">
</div>
<div id="cart_modal_footer" class="cart_modal_footer">
<!--------------------------------------->
<div class="cart_modal_totals">
<span id="cart_modal_delivery_name">Livrare:</span>
<span id="cart_modal_delivery_price">29,00 MDL</span>
</div>
<!--------------------------------------->
<div class="cart_modal_totals">
<span id="cart_modal_total_name">Total: </span>
<span id="cart_modal_total_price">144,00 MDL</span>
</div>
<div class="checkout_button_container">
<button id="continue_to_checkout">Continuă</button>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="js/creatNewCartItem.js"></script>
<script type="module" src="js/menu_API_to_html.js"></script>
<script type="text/javascript" src="js/cart.js"></script>
</body>
</html>