17 lines
662 B
HTML
17 lines
662 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Nuit de l'info quiz</title>
|
|
<link rel="stylesheet" href="../static/style.css">
|
|
<link href="/static/logo_n2i_color_moon.svg" rel="icon">
|
|
<script src="static/quizz.js"></script>
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
<a href="test.html"><img class="logo" src="static/logo_n2i_color_moon.svg"></a>
|
|
<h1 id="txt">page du quiz</h1>
|
|
<button id="strt" onclick="startQuiz({{questions.nbQuestion}})">Start Quiz!</button>
|
|
{% include 'question.html' %}
|
|
</body>
|
|
</html>
|