init
This commit is contained in:
commit
ce1095bb24
27 changed files with 621 additions and 0 deletions
17
app/templates/rennen_starten.html
Normal file
17
app/templates/rennen_starten.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Rennen starten</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<h2>Rennen starten</h2>
|
||||
<form method="POST" action="{{ url_for('main.countdown_starten') }}">
|
||||
<label>Anzahl Runden:
|
||||
<input type="number" name="runden" min="1" value="1">
|
||||
</label>
|
||||
<button type="submit" class="green">Countdown starten</button>
|
||||
</form>
|
||||
<p><a href="{{ url_for('main.fahrerverwaltung') }}">Zur Fahrerverwaltung</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in a new issue