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

23
app/templates/base.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}h4tum CTF Register{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1><a href="{{ url_for('main.index') }}">> TUM CTF 2026_</a></h1>
<main>
{% block content %}{% endblock %}
</main>
<footer>
<p>
<a href="{{ url_for('main.dsgvo') }}">Datenschutz (DSGVO)</a> |
<a href="{{ url_for('main.impressum') }}">Impressum</a>
</p>
</footer>
</body>
</html>