File size: 1,220 Bytes
cdfb731
 
 
 
 
 
 
6fc4c72
cdfb731
 
 
 
0bcd8e4
9d9efff
0bcd8e4
 
98960e8
6fc4c72
 
 
 
0bcd8e4
cdfb731
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quiz Host</title>
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="/static/style.css">
</head>
<body>
    <div class="container">
        <h2>Quiz Host</h2>
        <p>Participants connected: <span id="participant-count">0</span></p>
        <button onclick="restartQuiz()" class="btn btn-success mt-3">Start New Quiz</button>
        <button onclick="checkAnswers()" class="btn btn-primary mt-2">Check Answers</button>
        <button onclick="nextQuestion()" class="btn btn-secondary mt-2">Next Question</button>
        <button onclick="endQuiz()" id="end-quiz" class="btn btn-danger mt-2" disabled>End Quiz</button>
        <div id="question-section" class="mt-4">
            <p id="question-text"></p>
            <div id="options"></div>
        </div>
        <div id="results" class="mt-4"></div>
    </div>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.0/socket.io.js"></script>
    <script src="/static/script.js"></script>
</body>
</html>