Files
ga-bv.mathai.cloud/XACrypto.html
T

28 lines
889 B
HTML

<!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>