-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
51 lines (40 loc) · 1.82 KB
/
payment.html
File metadata and controls
51 lines (40 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Added Successfully</title>
<!-- Bootstrap -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Fav icon -->
<link rel="shortcut icon" href="./assets/img/fav icon.jpg" type="image/x-icon" hight="auto" width="100%">
</head>
<link rel="stylesheet" href="./assets/css/payment.css">
<body>
<div class="container confirmation-container">
<h1 class="display-4">Product Added Successfully!</h1>
<p class="lead">Your product has been added to the cart.</p>
<div class="card mb-4">
<div class="card-body rounded">
<h5 class="card-title">Product Details</h5>
<ul class="list-unstyled">
<li><strong>Product Name:</strong> Product</li>
<li><strong>Quantity:</strong> 1</li>
<li><strong>Price:</strong> $10.99</li>
</ul>
</div>
</div>
<h4>What Would You Like to Do Next?</h4>
<button type="button" class="btn btn-dark" onclick="history.back()">Continue Shoping</button>
<hr>
<footer>
<p>If you have any questions, feel free to contact our support team at <a
href="mailto:support@example.com">support@example.com</a> or visit our <a href="#">Help Center</a>.
</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>