33 lines
893 B
Twig
33 lines
893 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}HegreLand{% endblock %}
|
|
|
|
{% block body %}
|
|
{% for flash_error in app.flashes('verify_email_error') %}
|
|
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
|
|
{% endfor %}
|
|
|
|
<h1>M'inscrire</h1>
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
{{ form_start(registrationForm) }}
|
|
<div>
|
|
{{ form_row(registrationForm.email) }}
|
|
{{ form_row(registrationForm.firstName) }}
|
|
{{ form_row(registrationForm.lastName) }}
|
|
{{ form_row(registrationForm.roles) }}
|
|
</div>
|
|
<div>
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
label: 'Password'
|
|
}) }}
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn">M'inscrire</button>
|
|
<p>Déjà inscrit(e) ?<a href="{{ path('app_login') }}"> Me connecter</a> </p>
|
|
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|