{% extends 'base.html.twig' %} {% form_theme registrationForm 'form/tailadmin_theme.html.twig' %} {% block title %}Inscription equipe{% endblock %} {% block body %}
{% include 'auth/_auth_aside.html.twig' %}

Inscription

{% if registrationForm.vars.submitted and registrationForm.vars.errors|length > 0 %} {% endif %} {{ form_start(registrationForm, {'attr': {'class': 'ta-auth-form'}}) }}
{{ form_row(registrationForm.email, {'label': 'Email*'}) }} {{ form_row(registrationForm.teamName, {'label': 'Nom equipe*'}) }}
{{ form_row(registrationForm.nickname, {'label': 'Pseudo joueur 1*'}) }} {{ form_row(registrationForm.teammateEmail, {'label': 'Email joueur 2'}) }}
{{ form_row(registrationForm.plainPassword, {'label': 'Mot de passe*'}) }} {{ form_end(registrationForm) }}
{% endblock %}