added legal shit

This commit is contained in:
2026-01-08 19:21:12 +01:00
parent 6d21b232da
commit d0e55fa309
8 changed files with 342 additions and 146 deletions

View File

@@ -1,44 +1,38 @@
<!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 */
}
{% extends "base.html" %}
h1 {
font-size: 5rem; /* Makes it "Big" */
margin-bottom: 10px;
text-shadow: 0 0 10px #00ff00; /* Adds a hacker glow */
}
{% block content %}
<style>
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 60vh; /* Adjust based on how much of the screen you want to fill */
text-align: center;
}
a {
color: white;
text-decoration: none;
}
.box > h1 {
font-size: 5rem;
margin-bottom: 10px;
text-shadow: 0 0 10px #00ff00;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
.box > a {
color: white;
text-decoration: none;
}
.box > a:hover {
text-decoration: underline;
}
</style>
<div class="box">
<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>
</div>
{% endblock %}