<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 is {{ score }} out of {{ total_questions }}.</p> | |
<p>That's {{ score_percentage }}%.</p> | |
<p>Time Elapsed: {{ elapsed_time }}</p> | |
<a href="{{ url_for('index') }}">Take another quiz</a> | |
</body> | |
</html> |