-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
274 lines (233 loc) · 11.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Your Cart</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Facebook Opengraph integration: https://developers.facebook.com/docs/sharing/opengraph -->
<meta property="og:title" content="">
<meta property="og:image" content="">
<meta property="og:url" content="">
<meta property="og:site_name" content="">
<meta property="og:description" content="">
<!-- Twitter Cards integration: https://dev.twitter.com/cards/ -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="">
<!-- Place your favicon.ico and apple-touch-icon.png in the template root directory -->
<link href="img/unio.png" rel="icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate-css/animate.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<link rel="stylesheet" href="css/custom.css">
<!-- Bootstrap CSS File -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Libraries CSS Files -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link href="lib/animate-css/animate.min.css" rel="stylesheet">
<link rel="icon" href="img/unio.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/custom.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="lib/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="lib/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="lib/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="lib/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="lib/daterangepicker/daterangepicker.css">
<!--===============================================================================================-->
<link rel="stylesheet" href="css/util.css">
<!-- =======================================================
Theme Name: UNEAKO
Theme URL: https://bootstrapmade.com/UNEAKO-free-onepage-bootstrap-theme/
Author: BootstrapMade.com
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<!--==========================
Header Section
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<a href="#hero"><img src="img/logo.png" alt="" title="" /></img></a>
<!-- Uncomment below if you prefer to use a text image -->
<!--<h1><a href="#hero">Header 1</a></h1>-->
</div>
<nav id="nav-menu-container" class="ml-auto ">
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li class="menu-active"><a href="shop.html">Shop</a></li>
<li><a href="">Contact</a></li>
<li><a href="login.html">Log-In</a></li>
<li><a href="sign-in.html">Sign-In</a></li>
<li><a href="cart.html">Cart <i class="fas fa-cart-plus text-light"></i></a></i></li>
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</header>
<!-- #header -->
<body>
<div class="main-content col-lg-12">
<div class="featured-box featured-box-primary align-left">
<div class="box-content">
<form action="" class="cart-form" method="post">
<table class="shop_table responsive cart cart-form-contents" cellspacing ="0">
<thead>
<tr>
<th class="product-remove"> </th>
<th class="product-thumbnail"> </th>
<th class="product-name">Product Name</th>
<th class="product-price">Unit Price</th>
<th class="product-qunatity">Qty</th>
<th class="product-subtotal">Subtotal</th>
</tr>
</thead>
<tbody>
<tr class="cart-form_cart-item cart_item">
<td class="product-remove">
<a href="#" class="remove remove-product" aria-label="Remove this Item" onclick="
if(confirm('Are You Sure?')){
this.parentElement.parentElement.remove();}">X</a>
</td>
<td class="product-thumbnail">
<a href=""></a>
</td>
<td class="product-name"><a href=""></a></td>
<td class="product-price">
<span class="Price-amount amount">
</span>
</td>
<td class="product-quantity">
<div class="quantity buttons_added">
<button type="button" value="-" class="minus" onclick="var result = document.getElementById('qty');
var qty = result.value;
if( !isNaN( qty ) && qty > 1 )
result.value--;
return false;">-</button>
<input type="number" name="" id="qty" class="input-text qty text text-center" step="1" min="0" value="1" title="Qty" size="4" pattern="[0-9]*" inputmode="numeric" aria-labelledby="">
<button type="button" value="+" class="plus" onclick="var result = document.getElementById('qty');
var qty = result.value;
if( !isNaN( qty ) && qty > 0 )
result.value++;return false;">+</button>
</div>
</td>
<td class="product-subtotal">
<span class="Price-amount amount"></span>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<div class="cart-collaterals">
<div class="featured-box featured-box-primary align-left">
<div class="box-content">
<div class="cart_totals">
<h2>Cart Totals</h2>
<table class="shop_table responsive cart-total" cellspacing="0">
<tbody>
<tr class="cart_subtotal">
<th>Subtotal</th>
<td>
<span class="Price-amount amount"></span>
</td>
</tr>
<tr class="order-total">
<th>Total</th>
<td>
<strong>
<span class="Price-amount amount"></span>
</strong>
</td>
</tr>
</tbody>
</table>
<div class="proceed-to-checkout">
<a href="ship.html">Proceed to Checkout</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="container">
<div class="col-md-4">
<div class="social" style="text-align: center; font-size: 35px; ">
<!-- <a href=""><i class="fa fa-twitter"></i></a> -->
<a href="https://www.facebook.com/uneako/"><i class="fa fa-facebook" style="padding-right: 45px;";></i></a>
<!-- <a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.linkedin.com/company/uneako"><i class="fa fa-linkedin" style="padding-left: 45px"></i></a>
</div>
</div>
<div class="col-md-4">
<div class="copyright">
© Copyright <strong>UNEAKO</strong>. All Rights Reserved
</div>
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=UNEAKO
-->
Designed by <a href="https://bootstrapmade.com/">Vaigyanik Likho</a>
</div>
</div>
<div class="col-md-4">
<div class="social" style="text-align: center; font-size: 35px; ">
<a href="https://twitter.com/UNEAKO2"><i class="fa fa-twitter" style="padding-right: 45px"></i></a>
<!--a href="https://www.facebook.com/vaigyanik.atul"><i class="fa fa-facebook"></i></a-->
<!-- <a href=""><i class="fa fa-google-plus"></i></a> -->
<a href="https://www.instagram.com/uneako_/"><i class="fa fa-instagram" style="padding-left: 45px"></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Required JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/morphext/morphext.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/stickyjs/sticky.js"></script>
<script src="lib/easing/easing.js"></script>
<!-- Template Specisifc Custom Javascript File -->
<script src="js/custom.js"></script>
<script src="contactform/contactform.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
</body>
</html>