20 lines
514 B
Twig
20 lines
514 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Inscription{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Inscription</h1>
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
{{ form_start(registrationForm) }}
|
|
{{ form_row(registrationForm.nickname) }}
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
label: 'Password'
|
|
}) }}
|
|
{{ form_row(registrationForm.agreeTerms) }}
|
|
|
|
<button type="submit" class="btn">S'inscrire</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|