-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank-you.html
103 lines (100 loc) · 5.02 KB
/
thank-you.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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example Campaign</title>
<meta name="referrer" content="no-referrer-when-downgrade" />
<link rel="icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="bg-checkout d-flex flex-column h-100">
<div class="topbar py-3 py-lg-4">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-md-5 d-flex justify-content-center justify-content-md-start align-items-center pb-2 pb-md-0">
<div class="logo">
<img src="img/logo.png" alt="Example Campaign" class="img-fluid">
</div>
</div>
<div class="col-md-7 d-flex justify-content-center justify-content-md-end align-items-center">
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item is-complete"><span>CHECKOUT</span></li>
<li class="breadcrumb-item is-complete">UPGRADES</li>
<li class="breadcrumb-item is-current">SUMMARY</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
<section class="main h-100">
<div class="container-fluid">
<div class="row ">
<div class="col text-center py-5">
<div class="up-top-hdng pb-5">
<p class="up-hdng-txt1 h2 fw-bold text-dark"> <i class="d-none d-sm-inline-block fas fa-caret-right bounce-arrow me-1"></i><span>Congratulations! Your Order Is Complete! </span> <i class="d-none d-sm-inline-block fas fa-caret-left bounce-arrow-r ms-1"></i></p>
<p class="up-hdng-txt2 h6 text-dark">Your Package Will Be Shipped Within 1 - 2 Business Days.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-11">
<div class="row up-box bg-white justify-content-center p-4 mb-4">
<div class="col-xl-11">
<div class="row mb-3">
<div class="col">
<div class="fs-2 fw-bold text-center">Order Receipt</div>
</div>
</div>
</div>
<div class="col-xl-11 order-receipt-header bg-xlight"></div>
<div class="col-xl-11 order-receipt-items-header">
<div class="row">
<div class="col py-3">
<div class="fs-4 fw-bold text-center">Your Order:</div>
</div>
</div>
<div class="row mb-4 border-bottom text-uppercase">
<div class="col-8 p-2 fs-7 ">
<div class="summary-item-title">Item</div>
</div>
<div class="col-2 p-2 fs-7 text-end">
<div class="summary-item-qty-title">Qty.</div>
</div>
<div class="col-2 p-2 fs-7 text-end">
<div class="summary-item-item-total-title">Total</div>
</div>
</div>
</div>
<div class="col-xl-11 order-receipt-items"></div>
<div class="col-xl-11 order-receipt-summary rounded-3 p-3 bg-xlight mt-4"></div>
<div class="col-xl-11 order-receipt-footer"></div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer mt-auto">
<div class="container pt-4 pb-5">
<div class="row">
<div class="col-12 mt-3 pt-2 text-center footer-copyright d-flex flex-column flex-sm-row justify-content-between align-items-center">
<div class="mb-4 mb-sm-0 fs-8 text-light">
©2023 <span class="text-secondary">Example Campaign </span>. All Rights Reserved.
</div>
</div>
</div>
</div>
</footer>
</body>
<script type="text/javascript">
const publicKey = "HJiDgB1BcNDWx0lJYvP79mqDeRN8d0EVN9DfqYLv";
const refId = sessionStorage.getItem('ref_id');
const orderRef = '"Example Reference"'
</script>
<script type="text/javascript" src="js/campaign.js"></script>
<script type="text/javascript" src="js/receipt.js"></script>
</html>