-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
400 lines (383 loc) · 21.5 KB
/
cart.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/icofont.min.css">
<link rel="stylesheet" href="css/fontAwesome.css">
<link rel="stylesheet" href="plugins/owlCarousel/owl.carousel.min.css">
<link rel="stylesheet" href="plugins/jqueryUi/jquery-ui.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/xIcon.png" type="image/x-icon" />
<title> E-Bid </title>
</head>
<body>
<!-- MAIN HEADER -->
<header>
<div class="headerTop">
<div class="container">
<div class="headerTopWrapper">
<div class="headerTopUser">
<div class="userDrop">
<img src="images/icon-user.png" alt="icon"> <span> تسجيل </span>
<ul class="userDropDown">
<a href="store.html"> <img src="images/user-icon-1.png" alt="icon"> <span> متجرى </span> </a>
<a href="profile-orders.html"> <img src="images/user-icon-2.png" alt="icon"> <span> طلباتى </span> </a>
<a href="profile-auctions.html"> <img src="images/user-icon-3.png" alt="icon"> <span> مزايداتى </span> </a>
<a href="profile-address.html"> <img src="images/user-icon-4.png" alt="icon"> <span> عناوينى </span> </a>
<a href="profile.html"> <img src="images/user-icon-5.png" alt="icon"> <span> الملف الشخصى</span> </a>
<a href="index.html"> <img src="images/user-icon-6.png" alt="icon"> <span> تسجيل الخروج</span> </a>
</ul>
</div>
<a href="store-signUp.html"> <img src="images/icon-store.png" alt="icon"> <span> تسجيل كتاجر </span> </a>
<a href="favourite.html"> <img src="images/icon-fav.png" alt="icon"> <span> المنتجات المفضلة <span> (0) </span></span> </a>
</div>
<div class="headerTopMenus">
<div class="dropBox">
<img src="images/icon-global.png" alt="icon">
<span> اللغة : </span>
<select>
<option value="0"> عربي </option>
<option value="1"> En </option>
</select>
</div>
<div class="dropBox">
<img src="images/icon-coin.png" alt="icon">
<span> : العملة</span>
<select>
<option value="0"> Le </option>
<option value="1"> Sar </option>
<option value="2"> Ep </option>
<option value="3"> USD</option>
</select>
</div>
</div>
</div>
</div>
</div>
<div class="headerMiddle">
<div class="container">
<div class="headerMiddleBox">
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="english" class="img-fluid" width="100%">
</a>
</div>
<form class="headerFilter">
<div class="headerFilterCats">
<div class="filterToggle"> <span></span> <span></span> <span></span> </div>
<select>
<option value="0" selected> كل الاقسام </option>
<option value="1"> الكترونيات </option>
<option value="2"> سيارات </option>
<option value="3"> قطع غيار </option>
<option value="4"> ملابس </option>
<option value="5"> الأطفال والواليد </option>
<option value="6"> الاكسسورات </option>
</select>
</div>
<input type="text" placeholder="اكتب بحثك هنا">
<button class="redBtn"> <i class="icofont-search-1"></i> </button>
</form>
<div class="userIcons">
<a class="headerNotifications" href="notifications.html"> <i class="far fa-bell"></i> </a>
<a class="headerCart" href="cart.html">
<div class="headerCartIcon"> <img src="images/icon-basket.png" alt="icon"></div>
<label> عربة التسوق </label>
<span> (0) </span>
</a>
</div>
<div class="navBtn"> <span></span><span></span><span></span></div>
<div class="headerOverlay"></div>
</div>
</div>
</div>
<div class="headerNav">
<div class="container">
<ul>
<li> <a href="index.html"> الرئيسية </a> </li>
<li> <a href="elect.html"> الالكترونيات </a> </li>
<li> <a href="cars.html"> سيارات </a> </li>
<li> <a href="#"> قطع غيار </a> </li>
<li> <a href="#"> ملابس </a> </li>
<li> <a href="#"> عروض شهرية </a> </li>
<li> <a href="auctions.html"> مزادات </a> </li>
</ul>
</div>
</div>
</header>
<!-- SHARE -->
<div class="share">
<a href="#" class="facebook"> <i class="icofont-facebook"></i> <span> facebook </span></a>
<a href="#" class="youtube"> <i class="icofont-youtube"></i> <span> youtube </span></a>
<a href="#" class="twitter"> <i class="icofont-twitter"></i> <span> twitter </span></a>
<a href="#" class="whatsapp"> <i class="icofont-whatsapp"></i> <span> whatsapp </span></a>
<a href="#" class="email"> <i class="icofont-email"></i> <span> email </span></a>
</div>
<!-- Page Info -->
<div class="pageInfo">
<div class="container">
<h1> عربة التسوق </h1>
<div class="bradCrumbBox">
<i class="fas fa-home"></i>
<ol class="breadcrumb">
<li class="breadcrumb-item"> <a href="index.html"> الرئيسية </a> </li>
<li class="breadcrumb-item active" aria-current="page"> عربة التسوق </li>
</ol>
</div>
</div>
</div>
<!-- Cart Page -->
<div class="cartPage secPadding">
<div class="container">
<form action="cart-pay.html">
<div class="tableBox cartTablePc">
<table class="table table-bordered">
<thead>
<tr>
<th scope="col"> الصورة </th>
<th scope="col"> اسم المنتج </th>
<th scope="col"> اللون </th>
<th scope="col"> الماركة </th>
<th scope="col"> السعر </th>
<th scope="col"> الكمية </th>
<th scope="col"> الاجمالى </th>
</tr>
</thead>
<tbody>
<tr>
<td> <img src="images/phone-1.png" alt="item" class="img-fluid"> </td>
<td> يتم كتابة اسم المنتج </td>
<td> رصاصى </td>
<td> اتش بى </td>
<td> 30 رس </td>
<td>
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
</td>
<td> 30 رس <span class="deletecartItem"> <i class="icofont-close-line"></i> </span></td>
</tr>
<tr>
<td> <img src="images/phone-1.png" alt="item" class="img-fluid"> </td>
<td> يتم كتابة اسم المنتج </td>
<td> رصاصى </td>
<td> اتش بى </td>
<td> 30 رس </td>
<td>
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
</td>
<td> 30 رس <span class="deletecartItem"> <i class="icofont-close-line"></i> </span></td>
</tr>
<tr>
<td> <img src="images/phone-1.png" alt="item" class="img-fluid"> </td>
<td> يتم كتابة اسم المنتج </td>
<td> رصاصى </td>
<td> اتش بى </td>
<td> 30 رس </td>
<td>
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
</td>
<td> 30 رس <span class="deletecartItem"> <i class="icofont-close-line"></i> </span></td>
</tr>
</tbody>
</table>
</div>
<div class="mobileItems">
<div class="mobileItem">
<div class="mobileItemData">
<img src="images/phone-1.png" alt="item" class="img-fluid">
<div class="mobileItemDetails">
<h3> يتم كتابة اسم المنتج </h3>
<p> <label> اللون :</label> <span> رصاصى </span></p>
<p> <label> الماركة :</label> <span> اتش بى </span></p>
<p> <label> السعر : </label> <span> 30 رس </span></p>
<p> <label> الكمية: </label> <span> 01 </span></p>
<p> <label> الاجمالى : </label> <span>30 رس </span></p>
</div>
</div>
<div class="mobileItemFooter">
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
<span class="deletecartItem"> <i class="icofont-close-line"></i> </span>
</div>
</div>
<div class="mobileItem">
<div class="mobileItemData">
<img src="images/phone-1.png" alt="item" class="img-fluid">
<div class="mobileItemDetails">
<h3> يتم كتابة اسم المنتج </h3>
<p> <label> اللون :</label> <span> رصاصى </span></p>
<p> <label> الماركة :</label> <span> اتش بى </span></p>
<p> <label> السعر : </label> <span> 30 رس </span></p>
<p> <label> الكمية: </label> <span> 01 </span></p>
<p> <label> الاجمالى : </label> <span>30 رس </span></p>
</div>
</div>
<div class="mobileItemFooter">
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
<span class="deletecartItem"> <i class="icofont-close-line"></i> </span>
</div>
</div>
<div class="mobileItem">
<div class="mobileItemData">
<img src="images/phone-1.png" alt="item" class="img-fluid">
<div class="mobileItemDetails">
<h3> يتم كتابة اسم المنتج </h3>
<p> <label> اللون :</label> <span> رصاصى </span></p>
<p> <label> الماركة :</label> <span> اتش بى </span></p>
<p> <label> السعر : </label> <span> 30 رس </span></p>
<p> <label> الكمية: </label> <span> 01 </span></p>
<p> <label> الاجمالى : </label> <span>30 رس </span></p>
</div>
</div>
<div class="mobileItemFooter">
<div class="mount cartMount">
<span class="mountBtn plusBtn"> <i class="icofont-plus"></i> </span>
<span class="mountNumber"> 1 </span>
<span class="mountBtn minusBtn"> <i class="icofont-minus"></i> </span>
</div>
<span class="deletecartItem"> <i class="icofont-close-line"></i> </span>
</div>
</div>
</div>
<div class="productWrapper">
<div class="row">
<div class="col-12 col-sm-6">
<div class="cartBox coupounBox">
<h3> كوبون الخصم </h3>
<h4> أضف كوبون الخصم </h4>
<div class="coupoun">
<input type="text" class="form-control" placeholder="أضف كوبون الخصم">
<button class="whiteBtn"> تأكيد الكود </button>
</div>
</div>
</div>
<div class="col-12 col-sm-6">
<div class="cartBox">
<h3> تكلفة السلة </h3>
<div class="cartRecipt">
<p> <label> المبلغ الاجمالى : </label> <span> 90 رس </span></p>
<p> <label> تكلفة الشحن :</label> <span> 0 رس </span></p>
<p> <label> المبلغ الكلى : </label> <span> 90 رس </span></p>
</div>
<button type="submit" class="redBtn"> تابع عملية الدفع </button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- Footer -->
<section class="footer secPadding">
<div class="container">
<div class="logo">
<a href="index.html">
<img src="images/footerLogo.png" alt="english" class="img-fluid" width="100%">
</a>
</div>
<!-- Footer Nav -->
<div class="footerNav">
<ul>
<li class="active"> <a href="index.html"> الرئيسية </a> </li>
<li> <a href="elect.html"> الالكترونيات </a> </li>
<li> <a href="cars.html"> سيارات </a> </li>
<li> <a href="#"> قطع غيار </a> </li>
<li> <a href="#"> ملابس </a> </li>
<li> <a href="#"> عروض شهرية </a> </li>
<li> <a href="auctions.html"> مزادات </a> </li>
</ul>
</div>
<div class="row">
<div class="col-12 col-sm-6 col-md-3">
<div class="footerInfo">
<h3> حسابى </h3>
<ul>
<li> <a href="profile.html"> حسابى </a> </li>
<li> <a href="favourite.html"> قائمة رغباتى </a> </li>
<li> <a href="cart.html"> سلة المشتريات </a> </li>
<li> <a href="pay.html"> دفع </a> </li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-md-3">
<div class="footerInfo">
<h3> خدمة العملاء </h3>
<ul>
<li> <a href="auctions.html"> المزادات </a> </li>
<li> <a href="policy.html"> الشروط والاحكام </a> </li>
<li> <a href="contact.html"> اتصل بنا </a> </li>
<li> <a href="about.html"> من نحن </a> </li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-md-3">
<div class="footerInfo">
<h3> معلومات </h3>
<ul>
<li> <a href="store-signUp.html"> كيف اسجل كتاجر </a> </li>
<li> <a href="policy.html"> اتفاقية الاستخدام </a> </li>
<li> <a href="faq.html"> الاسئلة المتكرره </a> </li>
<li> <a href="map.html"> خريطة الموقع </a> </li>
</ul>
</div>
</div>
<div class="col-12 col-sm-6 col-md-3">
<div class="footerInfo">
<h3> معلومات التواصل </h3>
<ul>
<li> <p> الرياض .المملكه العربية السعودية </p> </li>
<li> <a href="tel:+966549782553"> +966549782553 </a> </li>
<li> <a href="mailto:mail@company.com"> mail@company.com </a> </li>
</ul>
</div>
</div>
<!-- Policy -->
<div class="col-12">
<div class="privacy">
<div class="row">
<div class="col-12 col-sm-4">
<p> جميع الحقوق محفوظة لموقع اى-بيد </p>
</div>
<div class="col-12 col-sm-4">
<img src="images/payIcons.png" alt="logo" class="img-fluid">
</div>
<div class="col-12 col-sm-4">
<img src="images/kian.png" alt="logo" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- JS -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="plugins/owlCarousel/owl.carousel.min.js"></script>
<script src="plugins/jqueryUi/jquery-ui.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>