intranet/templates/Training/Safety/SafetyQuiz.html.twig
2023-06-28 21:34:34 +00:00

23 lines
861 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.
<br>To pass this quiz you must answer NaN% of questions correctly.</p> {#TODO: figure out what the correct number is #}
{% form_theme quiz 'bootstrap_5_layout.html.twig' %}
{{ form(quiz )}}
</div>
</body>