-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout2.html
342 lines (322 loc) · 19.5 KB
/
checkout2.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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<!-- description -->
<meta name="description" content="3c用品介紹,3c專賣地方">
<meta name="keywords" content="3c,筆電,桌機,資訊商品">
<!-- facebook description -->
<meta property="og:title" content="Tim 3c store" />
<meta property=" og:description" content="The store to sell the desktop and laptop with the cheepier prices" />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://cdn1.iconfinder.com/data/icons/flat-business-icons/128/laptop-128.png"
type="image/x-icon">
<!-- main css -->
<link rel="stylesheet" href="css/style.css">
<title>傑姆的3C之家 結帳步驟2頁面</title>
</head>
<body>
<!-- header layout -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark font-weight-bolder sticky-top mb-3">
<div class="container">
<a class="navbar-brand " href="index.html"> <i class="fas fa-laptop mr-2"></i>傑姆的3C之家</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto mr-4 mb-0 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html" >首頁</a>
</li>
<li class="nav-item">
<a class="nav-link" href="product.html" >產品</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">登入</a>
</li>
</ul>
<a href="shopcart.html" class="btn btn-transparent mr-1"><i class="fa fa-shopping-cart"
aria-hidden="true"></i></a>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<section class="container my-5">
<div class="row justify-content-center">
<div class="col-md-6 bg-gradient bg-dark-200 text-light mb-3 mb-md-0 h-100">
<form class="row g-2 font-bold-size py-3 px-4 needs-validation" novalidate>
<div class="d-flex justify-content-around">
<h2 class=" font-weight-bold">付款</h2>
<ul class="process-list">
<li class="process-step first active">
<div class="step-wrapper">
<span >確認購明細</span>
</div>
</li>
<li class="process-step active">
<div class="step-wrapper">
<span>填寫資料</span>
</div>
</li>
<li class="process-step">
<div class="step-wrapper">
<span >寄送發票</span>
</div>
</li>
<li class="process-step last">
<div class="step-wrapper">
<span >完成交易</span>
</div>
</li>
</ul>
</div>
<div class="col-12">
<label for="inputNum4" class="form-label col-form-label-lg">信用卡卡號</label>
<div style="position: relative;">
<input type="text" class=" form-control form-control-lg" id="inputNum4" required placeholder="9100-1256-4897-5000">
<i class="fa fa-credit-card" aria-hidden="true"
style="position: absolute; right: 12px; top: 18px;"></i>
</div>
<div class="invalid-feedback font-base-size">
必填欄位,請輸入卡號
</div>
</div>
<div class="col-12">
<label for="inputLastName4" class="form-label col-form-label-lg">持卡人姓名</label>
<div class="d-flex justify-content-center">
<div class="col-md-6 ">
<input type="text" class=" form-control form-control-lg w-100" id=" inputLastName4" required placeholder="黃">
<div class="invalid-feedback font-base-size">
必填欄位,請輸入姓氏
</div>
</div>
<div class="col-md-6">
<input type="text" class=" form-control form-control-lg w-100" id=" inputLastName4" required placeholder="某某">
<div class="invalid-feedback font-base-size">
必填欄位,請輸入名子
</div>
</div>
</div>
</div>
<div class="col-12">
<label for="inputTellPhone" class="form-label col-form-label-lg">電話</label>
<input type="text" class="form-control form-control-lg" id="inputTellPhone" placeholder="0910078995">
<div class="invalid-feedback font-base-size">
必填欄位,請輸電話號碼
</div>
</div>
<div class="col-md-6">
<label for="inputState" class="form-label col-form-label-lg">有效日期</label>
<select id="inputState" class="form-select form-select-lg" required placeholder="月">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>
<div class="invalid-feedback font-base-size">
必填欄位,請選擇縣市
</div>
</div>
<div class="col-md-6">
<label for="inputState" class="form-label col-form-label-lg">有效日期</label>
<select id="inputState" class="form-select form-select-lg" required placeholder="年">
<option selected>2021</option>
<option>2022</option>
<option>2023</option>
<option>2024</option>
<option>2025</option>
</select>
<div class="invalid-feedback font-base-size">
必填欄位,請輸入地區
</div>
</div>
<div class="col-md-4">
<label for="inputState" class="form-label col-form-label-lg">背後末三碼</label>
<input type="text" class="form-control form-control-lg" id="inputTellPhone" placeholder="***">
<div class="invalid-feedback font-base-size">
必填欄位,請輸信用卡末三碼
</div>
</div>
</form>
<a href="checkout3.html"
class="btn btn-dark text-white btn-block py-2 font-bold-size">下一步</a>
</div>
<div class="col-md-4">
<div class="accordion col-md-10 mb-2" id="ShowShopDetail">
<h2 class="mb-0">
<button
class="btn bg-dark-200 btn-block text-center text-light font-bold-size p-2"
type="button" data-toggle="collapse" data-target="#collapseOne"
aria-controls="collapseOne">
顯示購物明細
</button>
</h2>
</div>
<div class="row flex-column">
<div id="collapseOne" class="col-md-10 mb-2 collapse show" data-parent="#ShowShopDetail">
<div class="card text-center ">
<div class="card-header py-1 bg-gradient bg-dark-200 text-light font-bold-size">
訂單摘要</div>
<div class="card-body ">
<div class="table-responsive">
<table class="table table-borderless">
<tbody>
<tr>
<th class="text-left" scope="row">小計</th>
<td></td>
<td class="text-right" colspan="2">NT$183,400</td>
</tr>
<tr>
<th class="text-left" scope="row">運費</th>
<td></td>
<td class="text-right" colspan="2">NT$3,600</td>
</tr>
</tbody>
<tfoot class="font-bold-size">
<td class="text-left" scope="row">
總計
</td>
<td></td>
<td class="text-right" colspan="2">NT$187,000</td>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<div id="collapseOne" class="col-md-10 collapse show" data-parent="#ShowShopDetail">
<div class="card">
<div
class="card-header text-center bg-gradient bg-dark-200 text-light py-1 font-bold-size">
購物清單
</div>
<div class="card-body">
<div class="d-flex mb-1">
<div class="mr-2">
<img class="img-fluid shop-images" src="img/product-items-2.jpg"
alt="購物結帳圖片1" ">
</div>
<div class=" d-flex flex-column justify-content-center">
<span class="shop-item-name ">紫色迷幻R3560X (1)</span>
<span class="shop-price ">$33,000</span>
</div>
</div>
<div class="d-flex mb-1">
<div class="mr-2">
<img class="img-fluid shop-images" src="img/product-items-3.jpg"
alt="購物結帳圖片2" ">
</div>
<div class=" d-flex flex-column justify-content-center">
<span class="shop-item-name ">RTG電競XS (1)</span>
<span class="shop-price ">$28,000</span>
</div>
</div>
<div class="d-flex mb-1">
<div class="mr-2">
<img class="img-fluid shop-images" src="img/product-items-5.jpg"
alt="購物結帳圖片3" ">
</div>
<div class=" d-flex flex-column justify-content-center">
<span class="shop-item-name ">商業之王GFDS (1)</span>
<span class="shop-price ">$33,000</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- foot title -->
<section class="bg-dark bg-gradient text-light font-weight-bolder">
<div class="container py-2">
<div class="row justify-content-center align-items-center">
<div class="col-md-5">
<span class="h4"><i class="fas fa-bell">訂閱我的頻道</i></span>
<p><a class="text-light" href="#">Timmy.channel.com.tw</a></p>
</div>
<div class="col-md-5">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="" aria-label="Recipient's username">
<i class="fas fa-envelope fa-2x"
style=" position: absolute; top: 5px; left: 6px;"></i>
<button class="btn btn-dark text-shadows" type="button" id="button-addon2"><i
class="fa fa-arrow-right" aria-hidden="true"></i></button>
</div>
</div>
</div>
</div>
</section> <!--footer layout -->
<footer class="py-3 bg-shadows">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-5 d-flex flex-column justify-content-between justify-content-md-start mb-3">
<p class="h4 font-weight-bolder mb-1">關於我們</p>
<p>我們有最好的團隊來保持質量和價格,以確保向客戶提供最優質的產品,我們自2016年以來銷售超過200,000件產品,現在我們準備出售新產品並訂閱我們,成為我們的會員可以享受折扣</p>
<ul class="list-unstyled mt-5">
<li class="h4 font-weight-bolder mb-1">聯絡資訊</li>
<li>07-1234-5678</li>
<li><a class="text-spotify-dark" href="mailto:[email protected]">[email protected]</a></li>
<li>服務時間: AM 9:00 到 PM 5:00</li>
<li>新北市光華區資訊路878號</li>
</ul>
</div>
<div class="col-md-5 text-left text-md-right d-flex flex-column justify-content-between">
<div class="mb-md-0 mb-3">
<p class="h4 font-weight-bolder mb-1">顧客服務</p>
<ul>
<li>
<a class="text-spotify-dark" href="#">條款及條件</a>
</li>
<li>
<a class="text-spotify-dark" href="#">常見問題</a>
</li>
<li>
<a class="text-spotify-dark" href="#">退貨及換貨政策</a>
</li>
</ul>
</div>
<div>
<a class="text-spotify-dark" href="https://www.facebook.com/"><i
class="fab fa-facebook-square fa-3x facebook-color"></i></a>
<a class="text-spotify-dark" href="https://twitter.com/"><i
class="fab fa-twitter-square fa-3x twitter-color"></i></a>
<a class="text-spotify-dark" href="https://google.com"><i
class="fa fa-google-plus-square fa-3x goole-color" aria-hidden="true"></i></a>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-12 text-center mt-2">
<p>
2020 © Timmy's 3C ALL RIGHTS RESERVED Timmy company
</p>
</div>
</div>
</div>
</footer>
<!-- footer layout end -->
<!-- fontawsome kit JS -->
<script src="https://kit.fontawesome.com/63b39233d0.js" crossorigin="anonymous"></script>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/js/bootstrap.bundle.min.js" integrity="sha384-BOsAfwzjNJHrJ8cZidOg56tcQWfp6y72vEJ8xQ9w6Quywb24iOsW913URv1IS4GD" crossorigin="anonymous"></script>
<script src="js/all.js"></script>
</body>
</html>