intranet/templates/Training/Safety/quizResults.html.twig
2023-06-29 20:04:14 +00:00

20 lines
689 B
Twig

<!DOCTYPE html>
<html>
{{ include('_header.html.twig') }}
<body>
{{ include('_navbar.html.twig')}}
<div class="container">
<h4>Congratulations, you've completed the quiz!</h4>
<p>Print this page and show it to your supervisor or instructor.</p> {#TODO: figure out what the minimum # of correct answers is #}
<div class="safetyQuiz-completion card">
<div class="card-body">
<h3>Certificate of Completion</h3>
<h4>{{ testerName }} <br> Completed the J.V. Safety Quiz on {{ 'now'|date('m/d/y')}}</h4>
<h5>With a score of {{ correctAnswers }}/{{ totalAnswers }} questions answered correctly.</h5>
</div>
</div>
</div>
</body>