WIP registration platform + discord bot
This commit is contained in:
44
app/templates/success.html
Normal file
44
app/templates/success.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!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 }}">Join the Discord server</a>
|
||||
| Access Token: {{ discord_token }}
|
||||
</h2>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user