-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout-success.html
More file actions
127 lines (127 loc) · 6.56 KB
/
checkout-success.html
File metadata and controls
127 lines (127 loc) · 6.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Checkout Success</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/all.css" />
</head>
<body>
<div class="bg-white sticky-top">
<div class="container">
<nav class="navbar px-0 navbar-expand-lg navbar-light bg-white">
<a class="navbar-brand position-absolute" href="./index.html"
style="left: 50%; transform: translate(-50%, -50%); top: 50%;">
Navbar
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse bg-white custom-header-md-open" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link ps-0" href="./product.html">Lorem ipsum</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./detail.html">Lorem ipsum</a>
</li>
</ul>
</div>
<div class="d-flex">
<a href="#"><i class="bi bi-heart-fill me-5"></i></a>
<a href="./cart-2.html"><i class="bi bi-cart"></i></a>
</div>
</nav>
</div>
</div>
<div class="container">
<div style="min-height: 400px; background-image: url(https://images.unsplash.com/photo-1480399129128-2066acb5009e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80);
background-position: center center;">
</div>
<div class="mt-5 mb-7">
<div class="row">
<div class="col-md-6">
<h2>Checkout Success</h2>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea</p>
<a href="./index.html" class="btn btn-outline-dark me-2 rounded-0 mb-4">Back To Home</a>
</div>
<div class="col-md-6">
<div class="card rounded-0 py-4">
<div class="card-header border-bottom-0 bg-white px-4 py-0">
<h2>Order Detail</h2>
</div>
<div class="card-body px-4 py-0">
<ul class="list-group list-group-flush">
<li class="list-group-item px-0">
<div class="d-flex mt-2">
<img src="https://images.unsplash.com/photo-1502743780242-f10d2ce370f3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1916&q=80" alt="" class="me-2" style="width: 60px; height: 60px; object-fit: cover">
<div class="w-100 d-flex flex-column">
<div class="d-flex justify-content-between fw-bold">
<h5>Lorem ipsum</h5>
<p class="mb-0">x10</p>
</div>
<div class="d-flex justify-content-between mt-auto">
<p class="text-muted mb-0"><small>NT$12,000</small></p>
<p class="mb-0">NT$12,000</p>
</div>
</div>
</div>
</li>
<li class="list-group-item px-0">
<div class="d-flex mt-2">
<img src="https://images.unsplash.com/photo-1502743780242-f10d2ce370f3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1916&q=80" alt="" class="me-2" style="width: 60px; height: 60px; object-fit: cover">
<div class="w-100 d-flex flex-column">
<div class="d-flex justify-content-between fw-bold">
<h5>Lorem ipsum</h5>
<p class="mb-0">x10</p>
</div>
<div class="d-flex justify-content-between mt-auto">
<p class="text-muted mb-0"><small>NT$12,000</small></p>
<p class="mb-0">NT$12,000</p>
</div>
</div>
</div>
</li>
<li class="list-group-item px-0 pb-0">
<table class="table text-muted">
<tbody>
<tr>
<th scope="row" class="border-0 px-0 font-weight-normal">Lorem ipsum</th>
<td class="text-end border-0 px-0">NT$24,000</td>
</tr>
<tr>
<th scope="row" class="border-0 px-0 pt-0 font-weight-normal">Payment</th>
<td class="text-end border-0 px-0 pt-0">ApplePay</td>
</tr>
</tbody>
</table>
<div class="d-flex justify-content-between mt-2">
<p class="mb-0 h4 fw-bold">Lorem ipsum</p>
<p class="mb-0 h4 fw-bold">NT$24,000</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-dark">
<div class="container">
<div class="d-flex align-items-center justify-content-between text-white py-4">
<p class="mb-0">© 2020 LOGO All Rights Reserved.</p>
<ul class="d-flex list-unstyled mb-0 h4">
<li><a href="#" class="text-white mx-3"><i class="bi bi-facebook"></i></a></li>
<li><a href="#" class="text-white mx-3"><i class="bi bi-instagram"></i></a></li>
<li><a href="#" class="text-white ms-3"><i class="bi bi-line"></i></a></li>
</ul>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
</html>