Fausto Busuito
Application changes
de7c6d8
raw
history blame
515 Bytes
<!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>