This repository has been archived on 2025-05-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pi-race-timer/app/templates/index.html
2025-04-29 23:36:37 +02:00

15 lines
480 B
HTML

<!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>