{% extends 'base.html.twig' %} {% block title %} Mon compte {% endblock %} {% block body %}

Mon compte

{% if passwordVerifForm is defined %} {{ form_start(passwordVerifForm, {'attr' : {'class':'form'}}) }}
{{ form_label(passwordVerifForm.Password) }}
{{ form_widget(passwordVerifForm.Password) }}
{{ form_end(passwordVerifForm) }} {% endif %} {% if editForm is defined %} {{ form_start(editForm, {'attr' : {'class':'form'}}) }}
{{ form_label(editForm.email) }}
{{ form_widget(editForm.email) }}
{{ form_label(editForm.civility) }}
{{ form_widget(editForm.civility) }}
{{ form_label(editForm.firstName) }}
{{ form_widget(editForm.firstName) }}
{{ form_label(editForm.lastName) }}
{{ form_widget(editForm.lastName) }}
{{ form_label(editForm.userFunction) }}
{{ form_widget(editForm.userFunction) }}
{{ form_label(editForm.phoneNumber) }}
{{ form_widget(editForm.phoneNumber) }}
{{ form_end(editForm) }} {% endif %} {% endblock %}