File size: 1,611 Bytes
1677ecc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
557c7e9
8a5b93a
57819f8
1677ecc
 
 
 
cdf7dae
1677ecc
 
 
 
557c7e9
1677ecc
 
cdf7dae
1677ecc
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quiz App</title>
    <link rel="stylesheet" href="/static/style.css">
</head>
<body>
    <div class="container">
        <h1>Quiz Application</h1>
        <div id="file-selection">
            <label for="file">Select a quiz:</label>
            <select id="file">
                <option value="" disabled selected>Choose a file</option>
                {% for file in files %}
                <option value="{{ file }}">{{ file }}</option>
                {% endfor %}
            </select>
            <button id="start-session">Start Session</button>
        </div>
        <div id="quiz-container" style="display: none;">
            <div id="question-container">
                <h2 id="question-number"></h2>
                <p id="timer">Time: 00:00:00</p>
                <h2 id="question" style="font-weight: normal;"></h2>
                <div id="options"></div>
                <div id="navigation">
                    <button id="prev">Previous</button>
                    <button id="next">Next</button>
                    <button id="end-session">End Session</button>
                </div>
            </div>
        </div>
        <div id="results-container" style="display: none;">
            <h2 id="question-number"></h2>
            <h2>Quiz Results</h2>
            <p id="score"></p>
            <button id="restart">Return to Start</button>
        </div>
    </div>
    <script src="/static/script.js"></script>
</body>
</html>