-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KnowledgeCash - Accueil</title>
</head>
<body>
<h1>Bienvenue sur KnowledgeCash</h1>
<div id="question-container">
<h2 id="question">Question:</h2>
<ul id="answers">
<li><button onclick="submitAnswer(this)"></button></li>
<li><button onclick="submitAnswer(this)"></button></li>
<li><button onclick="submitAnswer(this)"></button></li>
</ul>
</div>
<script>
// Fonction pour récupérer une question
function getQuestion() {
fetch('/get_question')
.then(response => response.json())
.then(data => {
document.getElementById('question').innerText = data.question;
let answers = document.getElementById('answers').getElementsByTagName('button');
for (let i = 0; i < data.reponses.length; i++) {
answers[i].innerText = data.reponses[i];
}
});
}
// Fonction pour soumettre une réponse
function submitAnswer(button) {
let userAnswer = button.innerText;
fetch('/submit_answer', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
question_id: 0, // Remplacer 0 par l'identifiant de la question
user_answer: userAnswer
})
})
.then(response => response.json())
.then(data => {
if (data.correct) {
alert('Bonne réponse!');
// Mettre à jour le score ou effectuer d'autres actions...
} else {
alert('Mauvaise réponse. Essayez à nouveau!');
}
});
}
// Charger une question au chargement de la page
document.addEventListener('DOMContentLoaded', () => {
getQuestion();
});
</script>
</body>
</html>