1
0
forked from sent/waves
waves/public/assets/g/flap/main.js
2025-04-09 17:11:14 -05:00

49 lines
2.5 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/404.css" />
<title>404 Error | 3kh0</title>
</head>
<body>
<h1 id="header">404 Error</h1>
<p id="detail">
That requested URL or file was not found. This might be on you or it is just my bad coding, \.<br />
Help us out and <a href="https://github.com/3kh0/3kh0.github.io/issues">open a issue</a> so we know this happened!
</p>
<button id="sfnButton" onclick="statsForNerds()">Stats for nerds</button>
<div id="sfn" style="display: none;">
Requested URL: <span id="full">Fetching URL...</span><br />
User IP: <span id="ip">Fetching IP...</span><br />
Error code: 404<br />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5756835229788588" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5756835229788588" data-ad-slot="6230603875" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5756835229788588" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5756835229788588" data-ad-slot="6230603875" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
<script src="/js/lib/jquery-3.2.1.min.js"></script>
<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;
$.getJSON("https://ipgeolocation.abstractapi.com/v1/?api_key=a1ebbf04c6164dd98b527e26c57fc28c", function (data) {
document.getElementById("ip").innerText = data.ip_address;
});
</script>
<script src="/js/main.js"></script>
</body>
</html>