intranet/templates/Training/Safety/SafetyQuiz.html.twig
2023-06-29 16:28:31 +00:00

22 lines
800 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>Complete the Safety Quiz below</h4>
<p>When you're finished, click 'Submit' at the bottom and print your results.
<br>You may retake this quiz as many times as you need.</p> {#TODO: figure out what the minimum # of correct answers is #}
{% form_theme quiz 'bootstrap_5_layout.html.twig' %}
{{ form(quiz )}}
</div>
</body>