-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
539 lines (505 loc) · 21 KB
/
index.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>MoveToBeActive Shop - Purchase unlock codes for our Garmin Watch Faces</title>
<meta
name="description"
content="MoveToBeActive Shop of Garmin watch faces"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHK0E9JXFB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YHK0E9JXFB');
</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>
<script data-ad-client="ca-pub-6627201559272369" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script type = "text/javascript">
function displayNextImage() {
x = (x === images.length - 1) ? 0 : x + 1;
document.getElementById("img").src = images[x];
}
function displayPreviousImage() {
x = (x <= 0) ? images.length - 1 : x - 1;
document.getElementById("img").src = images[x];
}
function startTimer() {
setInterval(displayNextImage, 5000);
}
var images = [], x = -1;
images[0] = "img/banner3.png";
images[1] = "img/banner%20v3white.png";
images[2] = "img/banner4.png";
images[3] = "img/banner%20v3.png";
</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" />
<!-- Load Stripe.js on your website. -->
<script src="https://js.stripe.com/v3/"></script>
<!-- Load Paypal scripts here -->
<!-- Codes for better mobile experience -->
<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>
f
<body onload = "startTimer()">
<!-- 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">
<h1>
<img
src="img/Logo-MoveToBeActive_small2.png"
alt="MtbA Logo Small"
/>
MoveToBeActive Watch Faces
</h1>
</div>
</div>
</div>
<!-- First Photo Grid
<div class="w3-row-padding w3-padding-16 w3-center" style="max-width:1100px;margin:auto">
<img src="img/banner.jpg" />
</div> -->
<!-- Image header -->
<header class="w3-display-container w3-center" id="home">
<br />
<br />
<br />
<img class="w3-image" id="img" src="img/banner%20v3.png" alt="Banner for the MoveToBeActive Shop page with watch face examples"/>
<!--
<button type="button" onclick="displayPreviousImage()">Previous</button>
<button type="button" onclick="displayNextImage()">Next</button>
<img
class="w3-image"
src="img/banner.png"
alt="Original MoveToBeActive watch face on Garmin Venu"
/> -->
</header>
<div class="sr-root">
<div class="sr-main" style="text-align: justify; text-justify: inter-word;">
<h5>
All our watch faces are free to use without any time restrictions, as long as you stick to the
default color and data points. In case you are pleased with the watch
face and would like to have more customization options, an unlock code can be purchased below that will allow you to:
<br><br>
- Choose between 14 different data points to add into each of the 5 different locations on the watch faces:
<ol>
<li><b>Notifications</b> count: Accent color if at least one notification is available or grey if no unread notifications;</li>
<li><b>Heart Rate</b> data;</li>
<li><b>Calories</b> burned;</li>
<li><b>Distance</b> walked/ran on the day (km or miles, dependent on watch’s selected unit on general config): Icon will be displayed in grey until steps goal has been met, and then changing to the accent color of choice;</li>
<li><b>Steps</b> walked/ran on the day: Icon will be displayed in grey until steps goal has been met, and then changing to the accent color of choice;</li>
<li><b>Elevation</b> (altitude above mean sea level in meters): Derived from the most accurate source (Barometer or GPS) in order of descending accuracy. If no GPS is present, then barometer readings will be used;</li>
<li><b>Wind speed</b>: Current wind speed in km/h or mph (depending on watch's pace unit settings), or m/s if selected on the MtbA White settings. The icon is the actual approximate wind direction;</li>
<li><b>Blood oxygen</b> percentage: last available value or current pulse ox if sensor is active;</li>
<li><b>Floors climbed</b> count: Icon will be grey when there are no unread notifications, and then changing to the accent color of choice when the floor climb goal is met;</li>
<li><b>Precipitation</b> percentage: The current chance of rain/snow precipitation (0-100%);</li>
<li><b>Humidity</b> percentage: The current relative humidity (0-100%);</li>
<li><b>Solar intensity</b> percentage: Describes the solar sensor’s charge efficiency, only available on Solar Charged watches.</li>
<li><b>Seconds</b></li>
<li><b>Intensity Minutes</b> per week</li>
</ol>
- 10 different accent colors that go well with the white background (<b>MtbA White Analog only</b>);<br>
- 22 stripe patterns inspired by the most iconic sport stripes (<b>MtbA Classic Stripes only</b>).
<br><br>
Please choose the watch face that you would like to buy the code using your preferred currency (<b>delivered automatically by email
between 1 to 2 hours after payment confirmation</b>, but in cases when the automated process fails, it could take up to 1 business day):
</h5>
<!-- </div>
<div class="sr-root"> -->
<!--<div class="sr-main" style="display: flex;"> -->
<table>
<tr>
<td>
<div class="sr-container">
<section class="container">
<h2><b>MtbA White Analog</b></h2>
<a href="https://apps.garmin.com/en-US/apps/90be8a59-284b-4ed2-a052-6cca9d7d5bf4">
<img
src="img/Home-MtbA White v3.png"
alt="MtbA White Analog Watch Face"
width="270"
height="270"
class="rounded-corners"
/>
</a>
<!-- Stripe Buttons -->
<button
data-checkout-mode="payment"
data-price-id="price_1IcAtsFtAbcT3JTHbbV7ywG3"
>
Pay EUR €1.30
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IeiE4FtAbcT3JTHzhg3gmYx"
>
Pay USD $1.60
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1KJlW1FtAbcT3JTHGxMpMXAB"
>
Pay AUD $2.20
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1OEgqsFtAbcT3JTH2xiXLbXl"
>
Pay GBP £1.30
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1KEixIFtAbcT3JTHlZQmIqhR"
>
Pay PLN zł6.00
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IyYZQFtAbcT3JTHQRu0cuGr"
>
Pay CN ¥10.50
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IyYWPFtAbcT3JTHAM1qjfbX"
>
Pay JPY ¥180.00
</button>
<br>
<a href="https://stripe.com/about">
<img
src="img/Powered%20by%20Stripe%20-%20blurple.png"
alt="Stripe Badge"
width="120"
class="displayed"
/>
</a>
<!-- End Stripe Buttons -->
<br>
<center>
<!-- Start Crypto buttons<div>
<a class="buy-with-crypto"
href="https://commerce.coinbase.com/checkout/c21bd001-c7ab-4fd2-8bfa-2c886874afaa">
Pay with Cryptocurrencies
</a>
<script src="https://commerce.coinbase.com/v1/checkout.js?version=201807">
</script>
</div>
<em>Powered by <a href="https://commerce.coinbase.com/">Coinbase</a></em>
<br><br>
<script
src="https://js.crypto.com/sdk?publishable-key=pk_test_bwAWzvtx4gQtfmzeordWQfsA">
</script>
<script>
cryptopay.Button({
createPayment: function(actions) {
return actions.payment.create({
currency: 'USD',
amount: 150,
description : 'MtbA White Analog',
});
},
onApprove: function (data, actions) {
// Optional: add logic such as browser redirection or check data object content
window.location.href = "https://mtba.int.eu.org/success.html";
},
defaultLang: 'en-US' // Optional: default language for payment page
}).render("#pay-button")
</script>
<div id="pay-button"></div>
End Crypto button -->
</center>
<!-- Paypal buttons
<div class="container">
<h1>Pay in EUR = €1.40</h1>
<div id = "paypal-button-container-eur"></div>
<br>
<h1>Pay in USD = $1.60</h1>
<div id = "paypal-button-container-usd"></div>
<br>
<h1>Pay in GBP = £1.20</h1>
<div id = "paypal-button-container-gbp"></div>
</div>
<script src="https://www.paypal.com/sdk/js?client-id=AVdn6pY7lctLqgFudPQFFiujvnZvd00_d03ltdfGLHgBSJRlgHvvp7SVtLTnuuLTiebj8TzpW6hNDcy9¤cy=EUR" data-sdk-integration-source="button-factory"></script>
<script>
//function initPayPalButton() {
paypal.Buttons({
style: {
shape: 'pill',
color: 'black',
layout: 'horizontal',
label: 'pay',
tagline: false
},
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{"description":"MtbA White Watch Face","amount":{"currency_code":"EUR","value":1.4}}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Transaction completed by ' + details.payer.name.given_name + '!');
});
},
onError: function(err) {
console.log(err);
}
}).render('#paypal-button-container-eur');
//}
//initPayPalButton();
</script>
<script src="https://www.paypal.com/sdk/js?client-id=AVdn6pY7lctLqgFudPQFFiujvnZvd00_d03ltdfGLHgBSJRlgHvvp7SVtLTnuuLTiebj8TzpW6hNDcy9¤cy=USD" data-sdk-integration-source="button-factory" data-namespace = "paypal_sdk"></script>
<script>
//function initPayPalButton() {
paypal_sdk.Buttons({
style: {
shape: 'pill',
color: 'white',
layout: 'horizontal',
label: 'pay',
tagline: false
},
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{"description":"MtbA White Watch Face","amount":{"currency_code":"USD","value":1.6}}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Transaction completed by ' + details.payer.name.given_name + '!');
});
},
onError: function(err) {
console.log(err);
}
}).render('#paypal-button-container-usd');
//}
//initPayPalButton();
</script>
<script src="https://www.paypal.com/sdk/js?client-id=AVdn6pY7lctLqgFudPQFFiujvnZvd00_d03ltdfGLHgBSJRlgHvvp7SVtLTnuuLTiebj8TzpW6hNDcy9¤cy=GBP" data-sdk-integration-source="button-factory" data-namespace = "paypal_gbp"></script>
<script>
//function initPayPalButton() {
paypal_gbp.Buttons({
style: {
shape: 'pill',
color: 'blue',
layout: 'horizontal',
label: 'pay',
tagline: false
},
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{"description":"MtbA White Watch Face","amount":{"currency_code":"GBP","value":1.2}}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
alert('Transaction completed by ' + details.payer.name.given_name + '!');
});
},
onError: function(err) {
console.log(err);
}
}).render('#paypal-button-container-gbp');
// }
// initPayPalButton();
</script>-->
<!-- End Paypal buttons -->
</section>
</div>
</td>
<td>
<div class="sr-container">
<section class="container">
<h2><b>MtbA Classic Stripes</b></h2>
<a href="https://apps.garmin.com/en-US/apps/1d3209d4-af81-444f-859c-b97375e09802">
<img
src="img/Home-MtbA_Stripes v2.png"
alt="MtbA Iconic Stripes Watch Face"
width="270"
height="270"
class="rounded-corners"
/>
</a>
<!-- Stripe Buttons -->
<button
data-checkout-mode="payment"
data-price-id="price_1IrWIMFtAbcT3JTHzxmg5TtG"
>
Pay EUR €1.40
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IrWIMFtAbcT3JTHGjFcS5Vs"
>
Pay USD $1.70
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1KJlZUFtAbcT3JTHqnvhkdTh"
>
Pay AUD $2.35
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1OEgtLFtAbcT3JTH141WIDCM"
>
Pay GBP £1.35
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1KEj1WFtAbcT3JTHyoiYxGtf"
>
Pay PLN zł6.50
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IrWIMFtAbcT3JTHv4hSnyb3"
>
Pay CN ¥11.00
</button>
<button
data-checkout-mode="payment"
data-price-id="price_1IyYTpFtAbcT3JTHr66JZItZ"
>
Pay JPY ¥190.00
</button>
<br>
<a href="https://stripe.com/about">
<img
src="img/Powered%20by%20Stripe%20-%20blurple.png"
alt="Stripe Badge"
width="120"
class="displayed"
/>
</a>
<!-- End Stripe Buttons -->
<br>
<center>
<!-- Start Crypto buttons
<div>
<a class="buy-with-crypto"
href="https://commerce.coinbase.com/checkout/3e878bda-18cd-4138-bb2c-27194e98a4a6">
Pay with Cryptocurrencies
</a>
<script src="https://commerce.coinbase.com/v1/checkout.js?version=201807">
</script>
</div>
<em>Powered by <a href="https://commerce.coinbase.com/">Coinbase</a></em>
End Crypto buttons -->
</center>
</td>
</tr>
</table>
<br>
<div id="error-message"></div>
<!-- </div> -->
<h5><b>Currently Supported Devices:</b> Captain Marvel, D2 Air, Darth Vader, Descent Mk2, Descent Mk2S, Enduro, First Avenger, Forerunner 245, Forerunner 245 Music, Forerunner 745, Forerunner 945, Forerunner 945 LTE, MARQ Adventurer, MARQ Athlete, MARQ Aviator, MARQ Captain, MARQ Commander, MARQ Driver, MARQ Expedition, MARQ Golfer, Rey, fēnix 6, fēnix 6 Dual Power, fēnix 6 Pro, fēnix 6 Pro Dual Power, fēnix 6 Pro Solar, fēnix 6 Solar, fēnix 6S, fēnix 6S Dual Power, fēnix 6S Pro, fēnix 6S Pro Dual Power, fēnix 6S Pro Solar, fēnix 6S Solar, fēnix 6X Pro, fēnix 7S, fēnix 7, fēnix 7X, epix 2, quatix 6, quatix 6X, vívoactive 4, vívoactive 4S, Venu, Venu 2, Venu 2S, Venu 2 Plus, Venu Mercedes-Benz, Venu Sq & Venu Sq Music.</h5>
</div>
</div>
<br><br>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Horizontal -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6627201559272369"
data-ad-slot="8590723077"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<footer>
<div class="w3-bottom">
<div class="banner">
<span>
This is the shop page of MoveToBeActive watch faces for Garmin.
<br />Download them from our page on the
<a
href="https://apps.garmin.com/en-US/developer/f959cfb4-acb7-4db5-8dfd-92749316d762/apps"
>
ConnectIQ store
</a>
</span>
</div>
</div>
</footer>
<script>
// Replace with your own publishable key: https://dashboard.stripe.com/test/apikeys
var PUBLISHABLE_KEY =
"pk_live_51IaLXRFtAbcT3JTHCojJ8Ezne6TdRLMoPhVmPCvsaxuHxwtGjJfCT4v073u2BfEOOjsJfQVSeBmy7jjT8RNfDU8300IaMKVg6S";
// Replace with the domain you want your users to be redirected back to after payment
var DOMAIN = location.href.replace(/[^/]*$/, "");
if (PUBLISHABLE_KEY === "pk_test_Tr8olTkdFnnJVywwhNPHwnHK00HkHV4tnP") {
console.log(
"Replace the hardcoded publishable key with your own publishable key: https://dashboard.stripe.com/test/apikeys"
);
}
var stripe = Stripe(PUBLISHABLE_KEY);
// Handle any errors from Checkout
var handleResult = function(result) {
if (result.error) {
var displayError = document.getElementById("error-message");
displayError.textContent = result.error.message;
}
};
document.querySelectorAll("button").forEach(function(button) {
button.addEventListener("click", function(e) {
var mode = e.target.dataset.checkoutMode;
var priceId = e.target.dataset.priceId;
var items = [{ price: priceId, quantity: 1 }];
// Make the call to Stripe.js to redirect to the checkout page
// with the sku or plan ID.
stripe
.redirectToCheckout({
mode: mode,
lineItems: items,
successUrl:
DOMAIN + "success.html?session_id={CHECKOUT_SESSION_ID}",
cancelUrl:
DOMAIN + "canceled.html?session_id={CHECKOUT_SESSION_ID}"
})
.then(handleResult);
});
});
</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>