forked from a456pur/seraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
proxy.html
92 lines (75 loc) · 3.96 KB
/
proxy.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
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YPJNDDQT84"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YPJNDDQT84');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/ico.ico" type="image/x-icon">
<link rel="stylesheet" href="storage/css/proxy.css">
<title>Phantoxy | Phantom</title>
<meta name="description" content="a free games site hosting 500+ games and a proxy unblocker that helps you bypass firewalls and access your favorite sites from school or work">
<meta property="og:site_name" content="phantom">
<meta property="og:title" content="phantom">
<meta property="og:type" content="website">
<meta property="og:description" content="a free games site hosting 500+ games and a proxy unblocker that helps you bypass firewalls and access your favorite sites from school or work">
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/offline-worker.js').then(function(registration) {
console.log('service worker initalised! scope:', registration.scope);
navigator.serviceWorker.addEventListener('message', function(event) {
if (event.data === 'cached') {
document.getElementById('cache-status').style.display = 'block';
}
});
}, function(error) {
console.log('ack, error with serviceworker! ', error);
});
});
}
</script>
</head>
<body>
<div class="content-side">
<h1>phantoxy</h1>
<a href="index.html">go to homepage</a>
<br>
<h1 id="countdown"></h1>
<p>A proxy? An advanced proxy! Get ready for Phantoxy, the proxy that unblocks and is compatible with every site, including GeForce Now, Now.gg, etc. Stay tuned in our Discord server for more information about the launch!
</p>
<p> <a href="https://quenq.com" target="_blank" style="text-decoration: none;">˗ˏˋ❀ powered by quenq.com ❀ ´ˎ˗</a> </p>
</div>
<script src="storage/js/"></script>
<script src="storage/js/cloak.js"></script>
<script src="storage/js/theme.js"></script>
<script src="storage/js/cookie.js"></script>
<script>
// Set the date we're counting down to
const countdownDate = new Date("Oct 12, 2024 00:00:00").getTime();
// Update the countdown every 1 second
const countdownFunction = setInterval(function() {
// Get today's date and time
const now = new Date().getTime();
// Find the distance between now and the countdown date
const distance = countdownDate - now;
// Time calculations for days, hours, minutes and seconds
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="countdown"
document.getElementById("countdown").innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s ";
// If the countdown is over, display a message
if (distance < 0) {
clearInterval(countdownFunction);
document.getElementById("countdown").innerHTML = "JOIN DISCORD";
}
}, 1000);
</script>
</body>
</html>