{% extends 'frontend.html.twig' %} {% block title %}Devenir Membre | {{ parent() }}{% endblock %} {% block body %}

Adhésion

{{ article_request_hadesion ? article_request_hadesion.content|raw }}
Cotisations 2024*
{% for asso_product in asso_products %} {% endfor %}
{{ asso_product.name }} : {{ asso_product.description|raw }} {{ asso_product.price|number_format(0, ',', ' ') }} XF

Demande d'adhésion à {{ app_name }}

{% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %} {{ form_start(form, {'attr': {'id': 'form-info-perso-1', 'class': 'form-adhesion1 mt-4'}}) }}
{{ form_widget(form.gender, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.gender) }}
{{ form_widget(form.last_name, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.last_name) }}
{{ form_widget(form.first_name, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.first_name) }}
{{ form_widget(form.phone, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.phone) }}
{{ form_widget(form.mobile, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.mobile) }}
{{ form_widget(form.email, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.email) }}
{{ form_widget(form.address, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.address) }}
{{ form_widget(form.type_of_property, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.type_of_property) }}
{{ form_widget(form.observation, {'attr': {'class': 'form-control', 'placeholder': ''}}) }} {{ form_errors(form.observation) }}

{{ form_end(form) }}
{% endblock %}