27 lines
1006 B
Twig
27 lines
1006 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{{ include('_header.html.twig') }}
|
|
|
|
<body>
|
|
<!-- Navigation -->
|
|
<div class="siteNavbar">
|
|
<ul class="list-group list-group-horizontal-md">
|
|
{% for item in header.Navbar %}
|
|
<h3 class="navitem"><a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{item.url}}">{{item.title}}</a></h3>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<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> |