You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ScienceQuest/project/src/templates/scienceQuizz.html

53 lines
1.0 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Science Quizz</title>
<!-- CSS -->
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.game-container {
text-align: center;
}
</style>
</head>
<body>
<div class="game-container">
<h1>Science Quizz</h1>
<div>
<p>Question {{ dVue.statJeu.numQuestion }}:</p>
<p>{{ dVue.statJeu.question }}</p>
<!-- Boutons quitter -->
<button>
<a href="defaultAction">Quitter</a>
</button>
</div>
<!-- Gestion des erreurs -->
{% if dVueErreur %}
<div style="color: red;">
<ul>
{% for error in dVueErreur %}
<li>{{ error }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
<!-- JS -->
</body>
</html>