init
This commit is contained in:
commit
ce1095bb24
27 changed files with 621 additions and 0 deletions
15
app/templates/index.html
Normal file
15
app/templates/index.html
Normal 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>
|
||||
Reference in a new issue