new file: Dockerfile new file: app.py new file: requirements.txt new file: start.bat new file: templates/login.html new file: templates/playlists.html new file: templates/quiz.html
13 lines
246 B
HTML
13 lines
246 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>Deine Playlists</title></head>
|
|
<body>
|
|
<h2>Wähle eine Playlist:</h2>
|
|
<ul>
|
|
{% for pl in playlists %}
|
|
<li><a href="/quiz/{{ pl.id }}">{{ pl.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|