|
<!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> |
|
|