{% extends "user/layout.html.twig" %} {% set pageName = 'user-profile with-sidebar with-section' %} {% set navTitle = "Mes Paramètres" %} {% block title %}Mes Paramètres{% endblock %} {# BODY CONTENT #} {% block body_user_content %}

Mes Paramètres

{{ form_errors(form.username) }}
{{ form_widget(form.username, {'id': 'input-username', 'attr': {'class': 'validate'}}) }}
{{ form_errors(form.email) }}
{{ form_widget(form.email, {'id': 'input-email', 'attr': {'class': 'validate'}}) }}

Soyez informé par mail des nouveaux points référencés près de chez vous !

{{ form_widget(form.newsletterFrequency, { 'id': "select-newsletterFrequency"}) }}
{{ form_errors(form.location) }}
{{ form_widget(form.location, {'id': 'input-location', 'attr': {'class': 'validate'}}) }}
{{ form_widget(form.newsletterRange, {'id': 'input-range'}) }}
{{ form_rest(form) }}
{% endblock %} {% block user_page_javascripts %} {% endblock %}