forked from audrey/intranet
15 lines
483 B
Twig
15 lines
483 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
|
|
{{ include('_header.html.twig') }}
|
|
|
|
<body>
|
|
{{ include('_navbar.html.twig')}}
|
|
<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> |