templates/survey/studentsurveystepone.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
    
    {% block title %}
        {% if page_title is defined %}{{ page_title }}{% else %}LCAS{% endif %}
    {% endblock %}
    
    {% block body %}
        <div class="container py-4 my-4">
            <div class="row px-4 mx-4">
                <div class="col-12">
                    <h5>Welcome to the Learning from Ourselves Survey</h5>
                    <p><strong>Please read each statement and click on the response that seems best to you.</strong></p>
                    {{ form_start(studentsurveysteponeform) }}
                        {{ form_row(studentsurveysteponeform.studentid, { 'label': 'Student ID' }) }}
                        {{ form_row(studentsurveysteponeform.age) }}
                        {{ form_row(studentsurveysteponeform.grade) }}
                        {{ form_row(studentsurveysteponeform.gender) }}
                        {{ form_row(studentsurveysteponeform.schid) }}
                        {{ form_row(studentsurveysteponeform.continue) }}
                        <div class="text-end"><button type="submit" class="btn btn-primary">Next Step</button></div>
                    {{ form_end(studentsurveysteponeform) }}
                </div>
            </div>
        </div>
    {% endblock %}