diff --git a/app/routes.py b/app/routes.py
index 1232c87..4355f53 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -90,3 +90,7 @@ def dsgvo():
@bp.route('/impressum')
def impressum():
return render_template('impressum.html')
+
+@bp.route('/rules')
+def rules():
+ return render_template('rules.html')
diff --git a/app/static/style.css b/app/static/style.css
index cfbffbd..27ef02e 100644
--- a/app/static/style.css
+++ b/app/static/style.css
@@ -1,7 +1,7 @@
body {
font-family: 'Courier New', monospace;
background: #1a1a1a;
- color: #00ff00;
+ color: #ffffff;
margin: 0;
padding: 10px; /* Reduced for mobile */
font-size: 18px; /* Balanced size for readability */
@@ -28,6 +28,10 @@ footer {
box-sizing: border-box; /* Ensures padding doesn't break layout */
}
+.container > h1 {
+ color: #00ff00;
+}
+
h1 { font-size: 1.5rem; word-wrap: break-word; }
input[type="text"], input[type="email"] {
diff --git a/app/templates/dsgvo.html b/app/templates/dsgvo.html
index a4bd1cc..4b6c389 100644
--- a/app/templates/dsgvo.html
+++ b/app/templates/dsgvo.html
@@ -2,6 +2,7 @@
{% block content %}
+
> Datenschutz
1. Datenschutz auf einen Blick
diff --git a/app/templates/index.html b/app/templates/index.html
index 7f3f039..d38c092 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -2,7 +2,7 @@
{% block content %}
-
> SYSTEM_INFO
+
> Info
- Date: 23.01.2026
- Time: 12:00 - 21:00
@@ -16,14 +16,18 @@
- 3rd Place: 50€
-
> FORMAT
+
> Format
- - Jeopardy Format (Explainer Video)
- - Team Size: 4 Members
+ - Jeopardy Format (Explanation)
+ - Max Team Size: 4 Members
+ - Teams will be finalized on site at the competition
+
+
Rules and further information
+
-
> REGISTRATION
+
> Registration
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
diff --git a/app/templates/rules.html b/app/templates/rules.html
new file mode 100644
index 0000000..ce7ed87
--- /dev/null
+++ b/app/templates/rules.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
> Rules
+
+{% endblock %}
+
diff --git a/run.py b/run.py
index 3dc5f39..a3fdaf3 100644
--- a/run.py
+++ b/run.py
@@ -3,4 +3,4 @@ from app import create_app
app = create_app()
if __name__ == '__main__':
- app.run()
+ app.run(debug=True)