{% extends 'base.html.twig' %} {% form_theme form 'form/tailadmin_theme.html.twig' %} {% block title %}Invitation - {{ invitation.team.name }}{% endblock %} {% block body %}
{% include 'auth/_auth_aside.html.twig' %}

Finaliser ton inscription

Tu as été invité à rejoindre l’équipe {{ invitation.team.name }} ({{ invitation.invitedEmail }}). {% if existing_account|default(false) %} Choisis ton surnom pour rejoindre l’équipe (tu es déjà connecté). {% else %} Choisis un surnom visible par ton partenaire et un mot de passe pour accéder à ton compte. {% endif %}

{% if existing_account|default(false) %}Rejoindre l’équipe{% else %}Compte joueur 2{% endif %}
{% if form.vars.submitted and form.vars.errors|length > 0 %} {% endif %} {{ form_start(form, {'attr': {'class': 'ta-auth-form'}}) }} {{ form_row(form.nickname, {'label': 'Surnom*'}) }} {{ form_row(form.plainPassword, {'label': 'Mot de passe*'}) }} {% if not existing_account|default(false) %} {% endif %} {{ form_end(form) }}
{% endblock %}