-
Notifications
You must be signed in to change notification settings - Fork 76
/
404.html
121 lines (111 loc) · 4.24 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OutRed | 404</title>
<link rel="stylesheet" href="/styles/style.css" />
<link
id="favicon"
rel="shortcut icon"
href="/assets/favicon.png"
type="image/x-icon"
/>
<script src="js/tabcloak.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-B5MYT5J8LH"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-B5MYT5J8LH");
</script>
</head>
<body>
<div id="navbar"></div>
<div class="content">
<script type="text/javascript">
atOptions = {
key: "7a33ea3bd131ec5ad5051e8181267d9c",
format: "iframe",
height: 90,
width: 728,
params: {},
};
document.write(
"<scr" +
'ipt type="text/javascript" src="http' +
(location.protocol === "https:" ? "s" : "") +
'://plantationexhaust.com/7a33ea3bd131ec5ad5051e8181267d9c/invoke.js"></scr' +
"ipt>"
);
</script>
<br /><br />
<h1 class="title">404 Error</h1>
<br /><br />
<h2>Uh oh, looks like you're a lost gamer!</h2>
<br /><br />
<a href="/index.html"
><button class="take-me-home-button">Take me home!</button></a
><br /><br />
<button class="take-me-home-button" onclick="statsForNerds()">
Stats for nerds
</button>
<div id="sfn" style="display: none" class="message">
<br />
Please make a ticket about this happening in the
<a href="https://discord.gg/FB6NtPkfwY">Discord server</a>.<br /><br />
Requested URL: <span id="full">Fetching...</span><br />
Referrer: <span id="ref">Fetching...</span><br />
Title: <span id="title">Fetching...</span><br />
Screen height: <span id="height">Fetching...</span><br />
Screen width: <span id="width">Fetching...</span><br />
Window height: <span id="winheight">Fetching...</span><br />
Window width: <span id="winwidth">Fetching...</span><br />
Cookies: <span id="cookie">Fetching...</span><br />
User agent: <span id="ua">Fetching...</span><br />
OS platform: <span id="plat">Fetching...</span><br />
Online: <span id="online">Fetching...</span><br />
Error code: 404<br />
</div>
<!-- thank you 3kh0 for the original script to show stats for nerds! -->
<script>
function statsForNerds() {
var x = document.getElementById("sfn");
if (x.style.display === "none") {
x.style.display = "block";
console.log("[ℹ️] Showing the stats for nerds!");
} else {
x.style.display = "none";
console.log("[ℹ️] Hiding the stats for nerds!");
}
}
document.getElementById("full").innerText = window.location.href;
document.getElementById("ref").innerHTML = document.referrer;
document.getElementById("title").innerText = document.title;
document.getElementById("height").innerHTML = screen.height + "px";
document.getElementById("width").innerHTML = screen.width + "px";
document.getElementById("winheight").innerHTML =
window.innerHeight + "px";
document.getElementById("winwidth").innerHTML =
window.innerWidth + "px";
document.getElementById("cookie").innerText = navigator.cookieEnabled;
document.getElementById("ua").innerHTML = navigator.userAgent;
document.getElementById("plat").innerHTML = navigator.platform;
document.getElementById("online").innerHTML = navigator.onLine;
</script>
<footer style="bottom: 0; position: fixed">
<a href="https://discord.gg/outred" target="_blank"></a>
<p>© OutRed</p>
<a href="https://github.com/OutRed/outredgames" target="_blank"></a>
</footer>
</div>
<script src="/js/cards.js"></script>
<script src="/js/navbar.js"></script>
</body>
</html>