File size: 662 Bytes
9a82c5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Results</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
    <h1>Results</h1>
    <p>Your score: {{ score }}%</p>
    <h2>Your Answers</h2>
    <ul>
        {% for i, question in enumerate(questions) %}
            <li>
                <p>{{ question['question'] }}</p>
                <p>Your answer: {{ answers[i] }}</p>
                <p>Correct answer: {{ question['correct'] }}</p>
            </li>
        {% endfor %}
    </ul>
</body>
</html>