File size: 515 Bytes
50b7a69
 
 
 
 
 
 
 
 
 
 
 
de7c6d8
50b7a69
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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 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>