12345678910111213141516171819 |
- {% extends 'base.html.twig' %}
- {% block title %}S'enregistrer{% endblock %}
- {% block content %}
- {% for flash_error in app.flashes('verify_email_error') %}
- <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
- {% endfor %}
- <h1>S'enregistrer</h1>
- {{ form_errors(registrationForm) }}
- {{ form_start(registrationForm) }}
- <button type="submit" class="btn">S'enregistrer</button>
- <a href="{{ path('app_main') }}" class="btn btn-secondary">Annuler</a>
- {{ form_end(registrationForm) }}
- {% endblock %}
|