-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanceled.html
127 lines (119 loc) · 4 KB
/
canceled.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>MtbA Payment Cancelled</title>
<meta name="description" content="Page for cancelled checkouts" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHK0E9JXFB"></script>
<!-- Event snippet for Example conversion page -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YHK0E9JXFB');
gtag("event", "conversion", {
send_to: "AW-CONVERSION_ID/CONVERSION_LABEL",
model: "Cancelled"
});
</script>
<!-- Clarity tracking code for https://mtba.int.eu.org/ -->
<script>
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i+"?ref=bwt";
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "acwzji4crt");
</script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Karma"
/>
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Karma", sans-serif;
}
.w3-bar-block .w3-bar-item {
padding: 20px;
}
body {
background-image: url("img/bg.png");
}
</style>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/global.css" />
<script src="https://js.stripe.com/v3/"></script>
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Ensures optimal rendering on mobile devices. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Optimal Internet Explorer compatibility -->
</head>
<body>
<!-- Top menu -->
<div class="w3-top">
<div class="w3-white w3-xlarge" style="max-width:1200px;margin:auto">
<div class="w3-center w3-padding-16">
<h2>
<img
src="img/Logo-MoveToBeActive_small2.png"
alt="MtbA Logo Small"
/>
MoveToBeActive Watch Faces
</h2>
</div>
</div>
</div>
<div class="sr-root">
<div class="sr-main">
<div
class="sr-payment-summary completed-view"
style="text-align: center;"
>
<h1>Your payment was canceled :(</h1>
<h5>Please go back to the shop page and try again.</h5>
</div>
<div class="sr-content">
<div class="pasha-image-stack">
<img
src="https://github.com/fevieira27/MoveToBeActive/blob/main/GitHub/Home4.png?raw=true"
width="150"
height="150"
/>
<img
src="https://movetobeactive.github.io/img/Home5.png?raw=true"
width="150"
height="150"
/>
<img
src="https://movetobeactive.github.io/img/Home-MtbA_Stripes_Small.png?raw=true"
width="150"
height="150"
/>
</div>
<footer class="sr-header">
<a href="./" style="text-align: center;"
>Click here to go back to the MoveToBeActive shop page </a
>
</footer>
</div>
</div>
</div>
<script>
var urlParams = new URLSearchParams(window.location.search);
if (urlParams.has("session_id")) {
document.getElementById("session").textContent = urlParams.get(
"session_id"
);
}
</script>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/19655302.js"></script>
<!-- End of HubSpot Embed Code -->
</body>
</html>