{% extends 'base.html.twig' %} {% form_theme registrationForm 'bootstrap_5_layout.html.twig' %} {% block title %}{{ 'lang.register'|trans }}{% endblock %} {% block styles %} {% endblock %} {% block body %}
Cumas Logo
{# because letter space #} Filetransfer
{% for flash_error in app.flashes('verify_email_error') %} {% endfor %}

{{ 'lang.register'|trans }}

{{ form_start(registrationForm) }} {{ form_errors(registrationForm) }}
{{ form_errors(registrationForm.email) }} {{ form_widget(registrationForm.email) }} {{ form_label(registrationForm.email) }}
{{ form_errors(registrationForm.plainPassword) }} {{ form_widget(registrationForm.plainPassword) }} {{ form_label(registrationForm.plainPassword) }}
{{ form_widget(registrationForm.firstName) }} {{ form_label(registrationForm.firstName) }}
{{ form_widget(registrationForm.lastName) }} {{ form_label(registrationForm.lastName) }}
{{ form_errors(registrationForm.cellphone) }} {{ form_widget(registrationForm.cellphone) }} {{ form_label(registrationForm.cellphone) }}
{{ form_widget(registrationForm.company) }} {{ form_label(registrationForm.company) }}
{#
#} {#
#} {# {{ form_row(registrationForm.agreeTerms) }} #} {#
#} {# #} {#
#} {#
#} {#
#} {# {{ form_row(registrationForm.agreeDataProtection) }} #} {#
#} {# #} {#
#} {{ 'lang.creatingAccountAgreeTerms' | trans }}

{{ 'lang.accountExist' | trans }}

{{ form_end(registrationForm) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('register') }} {% endblock %}