-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.html
63 lines (52 loc) · 2.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Session 9</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css">
<style type="text/css">
main {
height: calc(100vh - 56px); /* Permet à la carte d'être au centre de l'écran. */
}
main[v-cloak] {
display: none !important; /* Permet de ne rien afficher avant la fin du chargement */
}
main .card {
width: 45rem;
}
</style>
</head>
<body>
<div id="app" class="container">
<!-- Header -->
<nav class="navbar navbar-light bg-light">
<span class="navbar-brand mb-0 h1">Code ton quiz</span>
</nav>
<!-- Carte principale -->
<main class="d-flex align-items-center justify-content-md-center" v-cloak>
<div class="card">
<!-- Carte lorsqu'il y a des questions -->
<div class="card-body" v-if="current < quiz.length">
<h4 class="card-title">{{ step.question }}</h4>
<!-- Boutons pour les QCM -->
<button v-if="step.choices" v-for="choice in step.choices" class="btn btn-lg btn-block" :class="buttonClasses(choice)" v-on:click="submitButton(choice)" :disabled="success === false">{{ choice }}</button>
<!-- Champ de saisie pour les réponses libres -->
<input type="text" ref="textInput" v-if="!step.choices" class="form-control" :class="{'is-valid': success === true, 'is-invalid': success === false}" placeholder="Écrivez votre réponse" v-on:keyup.enter="submitText()" :disabled="success === false">
<!-- Résultat -->
<p class="lead mt-2" v-if="success === true">Bien vu !</p>
<p class="lead mt-2" v-if="success === false">Raté ! <span v-if="!step.choices">La réponse était {{ step.answer }}</span></p>
<button class="btn btn-dark btn-lg btn-block" v-if="success !== null" v-on:click="nextQuestion">Prochaine question</button>
</div>
<!-- Carte lorsque toutes les questions ont été complétées -->
<div class="card-body" v-if="current == quiz.length">
<h4 class="card-title">Vous avez terminé !</h4>
<p class="card-text">Affiche le score ici !</p>
</div>
</div>
</main>
</div>
<script src="https://unpkg.com/vue"></script>
<script src="./quiz.js"></script> <!-- Ce script contient toutes les questions du quiz -->
<script src="./app.js"></script>
</body>
</html>