45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Access Granted</title>
|
|
<style>
|
|
body {
|
|
font-family: monospace;
|
|
background: #1a1a1a;
|
|
color: #00ff00;
|
|
|
|
/* The centering magic */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center; /* Vertical center */
|
|
align-items: center; /* Horizontal center */
|
|
height: 100vh; /* Uses full viewport height */
|
|
margin: 0; /* Removes default browser margins */
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5rem; /* Makes it "Big" */
|
|
margin-bottom: 10px;
|
|
text-shadow: 0 0 10px #00ff00; /* Adds a hacker glow */
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>ACCESS GRANTED</h1>
|
|
<h2>{{ message }}</h2>
|
|
<h2>
|
|
<a href="{{ discord_link }}" target="_blank">Join the Discord server</a>
|
|
| Access Token: {{ discord_token }}
|
|
</h2>
|
|
</body>
|
|
</html>
|