forked from technolyceum/ai6-m2
Added quiz starter templates
This commit is contained in:
30
templates/index.html
Normal file
30
templates/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user