{% extends '@Core/layout.html.twig' %} {% block title %}Recherche de compte{% endblock %} {% block body %}

Recherche de compte

{% if type == 'student' %} Veuillez entrer votre matricule et sélectionner votre département et niveau d'études {% else %} Veuillez entrer votre matricule {% endif %}

{% for message in app.flashes('error') %}
{{ message }}
{% endfor %} {{ form_start(form) }}
{{ form_row(form.matricule, { 'attr': {'class': 'form-control'}, 'label_attr': {'class': 'form-label'} }) }}
{% if type == 'student' %}
{{ form_row(form.department, { 'attr': {'class': 'form-control'}, 'label_attr': {'class': 'form-label'} }) }}
{{ form_row(form.level, { 'attr': {'class': 'form-control'}, 'label_attr': {'class': 'form-label'} }) }}
{% endif %}
{{ form_end(form) }}
{% endblock %}