{% extends 'base.html.twig' %} {% block title %}Inscription{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
{{ form_start(form)}}

FORMULAIRE D'INSCRIPTION

INFORMATIONS GÉNÉRALES
{% for message in app.flashes('error') %}
{{ message }}
{% endfor %} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %}
{{ form_label(form.civility) }} {% for civility in form.civility %}
{{ form_widget(civility) }} {{ form_label(civility, null, { 'label_attr': {'class': 'custom-control-label'} }) }}
{% endfor %}
{{ form_label(form.lastName) }} {{ form_widget(form.lastName) }}
{{ form_label(form.firstName) }} {{ form_widget(form.firstName) }}
{{ form_label(form.email) }} {{ form_widget(form.email) }}
{{ form_label(form.numTel) }} {{ form_widget(form.numTel) }}
{{ form_label(form.address) }} {{ form_widget(form.address) }}
{{ form_widget(form.pays) }}
INSCRIPTION CONGRÈS
  • Tunisien:
    • Orthodontiste:
      • Avant 15 mai 2025 600 DT
      • Avant 1 juin 2025 700 DT
      • Sur place 900 DT
    • Résident 300 DT
  • Etranger:
    • Orthodontiste 200 €
    • Résident 100 €
{{ form_label(form.function) }}
{% for function in form.function %}
{{ form_widget(function) }}
{{ form_label(function, null) }}
{% endfor %}
EXTRAS
{{ form_label(form.lunchDayOne) }}
Date : Samedi le 21 juin 2025 Prix : 170 DT Prix : 50 €
{% for option in form.lunchDayOne %}
{{ form_widget(option) }} {{ form_label(option) }}
{% endfor %}
{{ form_label(form.lunchDayOneCount) }} {{ form_widget(form.lunchDayOneCount) }}
HÉBERGEMENT
MÉTHODE DE PAIEMENT

Total Frais D'inscription / Total Registration Fees : {{'{{ price }}'}}

{{ form_label(form.paymentType) }} {% for option in form.paymentType %}
{{ form_widget(option, { 'attr': {'class': 'input-payment-type', 'v-model': 'demand.paymentType'} }) }} {{ form_label(option) }}
{% endfor %}
{{ form_label(form.selectFile) }} {{ form_widget(form.selectFile) }}
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}