{% extends 'base.html.twig' %} {% block title %}Create your account {% endblock %} {% block body %}
{{ form_start(registrationForm, {'attr' : {'id' : 'registration_form', 'class' : 'needs-validation', 'novalidate' : 'novalidate', 'autocomplete' : 'false'}}) }}

Register

Please inform your data to create an account

{{ form_label(registrationForm.fullname, registrationForm.fullname.vars.label, {'label_attr': {'class': 'sr-only'}}) }} {{ form_widget(registrationForm.fullname, {'attr' : {'class' : 'form-control form-control-lg', 'required' : 'require', 'placeholder' : registrationForm.fullname.vars.label} }) }}
{% if registrationForm.fullname.vars.errors|length %} {{ form_errors(registrationForm.fullname) }} {% else %} This field is required. {% endif %}
{{ form_label(registrationForm.email, registrationForm.email.vars.label, {'label_attr': {'class': 'sr-only'}}) }} {{ form_widget(registrationForm.email, {'attr' : {'class' : 'form-control form-control-lg', 'required' : 'require', 'placeholder' : registrationForm.email.vars.label} }) }} {% if registrationForm.email.vars.errors|length %}
{{ form_errors(registrationForm.email) }}
{% endif %}
Please fill a valid email address.
{% for passwordField in registrationForm.plainPassword %}
{{ form_label(passwordField, passwordField.vars.label, {'label_attr': {'class': 'sr-only'}}) }} {{ form_widget(passwordField, {'attr' : {'class' : 'form-control form-control-lg', 'required' : 'require', 'placeholder' : passwordField.vars.label} }) }} {% if passwordField.vars.errors|length %}
{{ form_errors(passwordField) }}
{% endif %}
The password fields must match.
{% endfor %}
{{ form_end(registrationForm) }}
{% endblock %}