add something or something idk XACRypto.html

This commit is contained in:
Xiao X
2026-05-31 22:39:54 -04:00
committed by GitHub
parent 526ec01210
commit bd5f88641b
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="5; url=https://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto">
<title>Redirecting...</title>
</head>
<body style="font-family: Arial; text-align: center; margin-top: 50px;">
<h2 id="countdown">You will be redirected in 3 seconds</h2>
<button onclick="redir()">Click here to redirect now</button>
<script>
let gt = 3;
const dwerfsfewf = document.getElementById("countdown");
const time = setInterval(() => {
gt--;
if (gt > 0) {
dwerfsfewf.textContent = `You will be redirected in ${gt} second${gt===1?'':'s'}`;
} else {
dwerfsfewf.textContent = "Redirecting...";
clearInterval(time);
}
}, 1000);
function redir() {
window.location.href = "https://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto;
}
</script>
</body>
</html>