Skip to content

Commit

Permalink
Update support.html
Browse files Browse the repository at this point in the history
  • Loading branch information
anoxle authored Aug 7, 2024
1 parent 07cb419 commit c7f517e
Showing 1 changed file with 1 addition and 89 deletions.
90 changes: 1 addition & 89 deletions support.html
Original file line number Diff line number Diff line change
@@ -1,89 +1 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="anoxle.git">
<meta name="description" content="Radars Support Server">
<title>Radars! | Support</title>
<link rel="icon" href="https://anoxle.github.io/exco/logo2.png" type="image/png">
<style>
body {
font-family: Arial, sans-serif;
background-color: #36393f;
color: #ffffff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.popup {
display: none;
background-color: #202225;
border-radius: 8px;
padding: 20px;
text-align: center;
box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.popup p {
margin: 0;
padding: 10px 0;
}

.popup button {
padding: 10px 20px;
background-color: #7289da;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

h1 {
font-size: 20px;
margin-bottom: 20px;
}

a {
color: #7289da;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
</style>
</head>
<body onload="redirect()">
<div id="message">
<h1>Sending you to <a href="https://discord.gg/PWnzAFNuKe">https://discord.gg/PWnzAFNuKe</a></h1>
</div>
<div class="popup" id="popup">
<p>Pop-up blocker detected. Please click the button below to proceed.</p>
<button onclick="redirect()">Go to URL</button>
</div>

<script>
function redirect() {
document.getElementById("message").innerHTML += "<br>Redirecting in 1 second...";
setTimeout(function() {
window.location.href = "https://discord.gg/PWnzAFNuKe";
}, 1000);
document.getElementById("popup").style.display = "none";
}

setTimeout(function() {
document.getElementById("popup").style.display = "block";
}, 100);
</script>
</body>
</html>
Page blocked: This bot is discontinued Join our new bot's [support server](https://anoxle.github.io/vulpes/support) or install it to your account https://anoxle.github.io/vulpes/install

0 comments on commit c7f517e

Please sign in to comment.