Template
1
0

Added quiz starter templates

This commit is contained in:
2025-11-17 23:07:52 +03:00
parent 8abac1840f
commit 61f2a71410
47 changed files with 355 additions and 1924 deletions

30
templates/index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quizimoto - Russian Millionaire Quiz</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<header>
<h1>Quizimoto</h1>
<p>Russian Millionaire Quiz Game</p>
</header>
<div class="welcome-content">
<h2>Welcome!</h2>
<p>Test your knowledge of Russian culture and win up to 1,000,000 ₽!</p>
<button onclick="startGame()" class="start-btn">Start Game</button>
</div>
</div>
<script>
function startGame() {
window.location.href = '/start';
}
</script>
</body>
</html>