modified: .env.example

modified:   Dockerfile
	modified:   app.py
	new file:   locales/de-DE.json
	modified:   templates/login.html
	modified:   templates/playlists.html
	modified:   templates/quiz.html
This commit is contained in:
SimolZimol
2025-05-19 17:39:11 +02:00
parent 53e669b5c1
commit d38254bc3c
7 changed files with 69 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Login mit Spotify</title>
<title>{{ translations['login_title'] }}</title>
<style>
body {
background: linear-gradient(135deg, #1DB954 0%, #191414 100%);
@@ -46,7 +46,7 @@
<body>
<div class="login-container">
<h1>Quizify Musik Quiz</h1>
<a href="/login" class="button">Mit Spotify einloggen</a>
<a href="/login" class="button">{{ translations['login_button'] }}</a>
</div>
</body>
</html>