This commit is contained in:
Rainer 2025-04-29 23:36:37 +02:00
commit ce1095bb24
27 changed files with 621 additions and 0 deletions

15
app/templates/index.html Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Rennstoppuhr</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<h1>Rennstoppuhr</h1>
<div class="menu">
<a href="{{ url_for('main.rennen_starten') }}">🏁 Rennen starten</a>
<a href="{{ url_for('main.fahrerverwaltung') }}">👤 Fahrerverwaltung</a>
<a href="{{ url_for('main.admin') }}">⚙️ Einstellungen (Admin)</a>
</div>
</body>
</html>