-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
143 lines (139 loc) · 5.67 KB
/
Copy pathcheckout.html
File metadata and controls
143 lines (139 loc) · 5.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Giỏ Hàng</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="shortcut icon" href="./img/logo.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<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"
/>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body style="background-color: #f4f4f4;">
<header>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="./index.html"
><img src="./img/logo.png " alt=""
/></a>
<!-- <div class="input-group">
<input
type="text"
oninput="findMobile()"
id="txtSearch"
class="form-control"
placeholder="Tìm sản phẩm theo tên, thương hiệu bạn mong muốn ..."
aria-label="Recipient's username"
aria-describedby="basic-addon2"
/>
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2"
>Tìm kiếm <i class="fa fa-search"></i
></span>
</div>
</div> -->
<div class="btnCart">
<a href="./checkout.html">
<div class="btnCart__cart d-inline-block">
<i class="fa fa-shopping-cart d-inline-block"></i>
<span class="d-inline-block">Giỏ Hàng</span>
<span class="btnCart__text d-inline-block" id="btnAmount"></span>
</div>
</a>
</div>
</div>
</nav>
</header>
<div class="container container--checkout">
<h2 class="d-inline-block">Giỏ Hàng</h2>
<span class="d-inline-block">
( <span id="btnAmount"></span> Sản Phẩm)</span>
<div class="checkout" id="tblCheckout">
<div class="row cart">
<div class="col-9 cart-inner">
<ul class="cart-prodcuts" id="cardProductsList" >
<!-- <li class="cart-products__products">
<div class="cart-products__inner">
<div class="cart-products__img">
<img
src="./img/iphone/iphone-11-128gb-green-400x460.png"
alt=""
/>
</div>
<div class="cart-products__content">
<div class="cart-products__desc">
<div class="cart-products__name">Iphone 11</div>
<div class="cart-products__actions">
<span class="cart-products__del">Xóa</span>
</div>
</div>
<div class="cart-products__details">
<div class="cart-products__pricess">
<p class="cart-products__real-prices">900.000đ</p>
</div>
<div class="cart-products__qty">
<div class="CartQty__StyledCartQty-o1bx97-0 iaIXXn">
<span class="qty-decrease">-</span>
<input type="tel" class="qty-input" value="2" />
<span class="qty-increase">+</span>
</div>
</div>
</div>
</div>
</div>
</li> -->
</ul>
</div>
<div class="col-3 cart-total-prices">
<div class="prices">
<ul class="prices__items">
<li class="prices__item">
<span class="prices__text" onclick="">Tổng tiền</span>
<span class="prices__value" id="priceValue">55.742đ</span>
</li>
</ul>
</div>
<button type="button" onclick="payMB()" class="cart__submit">
Thanh Toán
</button>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/js/all.min.js" integrity="sha512-YSdqvJoZr83hj76AIVdOcvLWYMWzy6sJyIMic2aQz5kh2bPTd9dzY3NtdeEAzPp/PhgZqr4aJObB3ym/vsItMg==" crossorigin="anonymous"></script>
<!-- <script src="./js/loader.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./js/models/Mobile.js"></script>
<script src="./js/services/axios.js"></script>
<script src="./js/services/MobileServices.js"></script>
<script src="./js/general.js"></script>
<!-- <script src="./js/main.js"></script> -->
<script src="./js/checkout.js"></script>
</body>
</html>