-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshifters.html
95 lines (90 loc) · 2.93 KB
/
shifters.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
title: Shifters
permalink: /shifters/
layout:
---
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="{{ '/assets/shifters/style.css' | relative_url }}">
{% seo %}
</head>
<body>
<header>
<a href="/shifters/">
<img src="{{ '/assets/shifters/logo.png' | relative_url }}" alt="Les Shifters" />
</a>
<h1>
<a href="/shifters/">
Tester ses connaissances sur la
<span>décarbonation</span> de l'économie
</a>
</h1>
</header>
<div id="spinner">
<i class="fa fa-snowflake-o fa-spin fa-3x"></i>
</div>
<div id="config">
<form id="quiz_config_form">
<fieldset>
<legend class="title">Générer une liste de questions</legend>
<table class="inputs">
<tr>
<td class="label">
<label>Nombre :</label>
</td>
<td class="input">
<select id="n_questions_select">
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="all">Toutes</option>
</select>
</td>
</tr>
<tr>
<td class="label">
<label>Catégorie :</label>
</td>
<td class="input">
<select id="category_select"></select>
</td>
</tr>
<tr>
<td class="label">
<label>Niveau :</label>
</td>
<td class="input">
<select id="level_select"></select>
</td>
</tr>
</table>
<input type="submit" value="Générer" />
</fieldset>
</form>
<form id="question_groups_form">
<fieldset>
<legend class="title">Choisir un questionnaire existant</legend>
<div class="inputs">
<select></select>
</div>
<input type="submit" value="Choisir" />
</fieldset>
</form>
</div>
<div id="quiz"></div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.2/immutable.min.js"></script>
<script src="{{ '/assets/shifters/jquery.sortable.min.js' | relative_url }}"></script>
<script src="{{ '/assets/shifters/quiz.js' | relative_url }}"></script>
<script src="{{ '/assets/shifters/questions.js' | relative_url }}"></script>
<script src="{{ '/assets/shifters/main.js' | relative_url }}"></script>
</body>
</html>