24 lines
656 B
HTML
24 lines
656 B
HTML
<!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>
|