remove some warnings, add configuration pane

This commit is contained in:
2022-04-14 18:24:22 +02:00
parent 0834a86d49
commit 0feca4f8da
7 changed files with 147 additions and 28 deletions

View File

@@ -13,12 +13,16 @@
window.ajoute = ajoute;
window.ajoute_kp = ajoute_kp;
window.next = next;
window.intervalle_orateurice = intervalle_orateurice;
window.setInterval(intervalle_orateurice, 1000);
</script>
<link rel="stylesheet" href="kikikoz.css"/>
</head>
<body>
<h1>Kikikoz</h1>
<main>
<h1>Kikikoz</h1>
<button>Configuration</button>
<p class="orateurice">
<span id="orateurice" class="personne" onclick="intervalle_orateurice()">Personne</span> <span id="compte"></span> <button onclick="next()">Hop!</button>
</p>
@@ -42,6 +46,11 @@
<button onclick='ajoute("queue_b")'>+</button></p>
</section>
</section>
</main>
<aside id="configuration">
<h2>Configuration</h2>
<p> Pas d'options pour le moment, revenez dans une version ultérieure.</p>
</aside>
</body>
</html>