-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpro.html
More file actions
121 lines (99 loc) · 4.96 KB
/
pro.html
File metadata and controls
121 lines (99 loc) · 4.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mustats Pro | Mustats</title>
<meta name="description" content="The Pro Version of the app at a reduced price">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Swiper slider-->
<link rel="stylesheet" href="vendor/swiper/swiper-bundle.min.css">
<!-- Modal Video-->
<link rel="stylesheet" href="vendor/modal-video/css/modal-video.min.css">
<!-- Google fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,600,800&display=swap">
<!-- Device Mockup-->
<link rel="stylesheet" href="css/device-mockups.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<!-- Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#00CAB1 "/>
<meta name="keywords" content="Mustats for Spotify, mustats, stats, music stats, spotify stats, spotify, spotify wrapped, Mustats, top stats, swipe recommendations, stats">
</head>
<body>
<!-- navbar-->
<header class="header">
<nav class="navbar navbar-light navbar-expand-lg fixed-top" id="navbar">
<div class="container"><a class="navbar-brand" href=""><img src="img/original.svg" alt="" width="40"></a>
</div>
</nav>
</header>
<!-- Hero Section-->
<section class="hero bg-top py-5" id="hero" style="background: url(img/banner-4.png) no-repeat; background-size: 100% 80%">
<div class="container py-5">
<div class="row py-5">
<div class="col-lg-5 py-5">
<h1>Buy Mustats Pro Cheaper than The App</h1>
<p class="my-4 text-muted">You can get all the perks Mustats Pro offers and will offer for a reduced price. Google Play earns almost 30 % of whats purchased via the app and if you buy it throught here, you are supporting directly to us without intermediaries❤️.</p>
<ul class="list-inline mb-0">
<li class="list-inline-item mb-2 mb-lg-0"><a class="btn btn-primary btn-lg px-4" rel="noopener noreferrer" id="buy">Pro Not Available via Web Yet</a></li>
<!-- <li class="list-inline-item"><a class="btn btn-primary btn-lg px-4" href="#!"> <i class="fab fa-app-store me-3"></i>App Store</a></li> -->
</ul>
</div>
<div class="col-lg-6 ml-auto">
</div>
</div>
</div>
</section>
<!-- JavaScript files-->
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/swiper/swiper-bundle.min.js"></script>
<script src="vendor/modal-video/js/modal-video.js"></script>
<script src="js/front.js"></script>
<script>
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
var tech = urlParams.get('status')
var dev = urlParams.get('device')
if(tech==="true"){
document.getElementById("buy").innerHTML = "You already bought Pro!";
document.getElementById("buy").removeAttribute("href")
}
if(dev==="notallowed"){
alert("You need to have and Android device with the app installed to buy Pro Version")
}
</script>
<script>
// ------------------------------------------------------- //
// Inject SVG Sprite -
// see more here
// https://css-tricks.com/ajaxing-svg-sprite/
// ------------------------------------------------------ //
function injectSvgSprite(path) {
var ajax = new XMLHttpRequest();
ajax.open("GET", path, true);
ajax.send();
ajax.onload = function(e) {
var div = document.createElement("div");
div.className = 'd-none';
div.innerHTML = ajax.responseText;
document.body.insertBefore(div, document.body.childNodes[0]);
}
}
// this is set to BootstrapTemple website as you cannot
// inject local SVG sprite (using only 'icons/orion-svg-sprite.svg' path)
// while using file:// protocol
// pls don't forget to change to your domain :)
injectSvgSprite('https://bootstraptemple.com/files/icons/orion-svg-sprite.svg');
</script>
<!-- FontAwesome CSS - loading as last, so it doesn't block rendering-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</body>
</html>