{% extends 'base.html.twig' %} {% block title %}SwimMonitor - New User{% endblock %} {% block header %}

Benutzerverwaltung

Registrierung
{% endblock %} {% block breadcrumb %} Neuen Benutzer registrieren {% endblock %} {% block content %}
Benutzerregistrierung
{{ form_start(registrationForm, {'attr': {'class': 'needs-validation'}}) }}
{{ form_label(registrationForm.email, null, {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(registrationForm.email) }}
{{ form_errors(registrationForm.email) }}
{{ form_label(registrationForm.firstName, null, {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(registrationForm.firstName) }}
{{ form_errors(registrationForm.firstName) }}
{{ form_label(registrationForm.lastName, null, {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(registrationForm.lastName) }}
{{ form_errors(registrationForm.lastName) }}
{{ form_label(registrationForm.roles, null, {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(registrationForm.roles) }}
{{ form_errors(registrationForm.roles) }}
{{ form_label(registrationForm.password, null, {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(registrationForm.password) }}
{{ form_errors(registrationForm.password) }}
{{ form_end(registrationForm) }}
{% endblock %}