{% extends 'b_index.html.twig' %} {% block title %}Register{% endblock %} {% block stylesheets %} {{ encore_entry_link_tags('app_table') }} {% endblock %} {% block body %} {% for flash_error in app.flashes('verify_email_error') %} {% endfor %}

Register

{# {{ include('registration/_form.html.twig') }}#} {{ form_errors(registrationForm) }} {{ form_start(registrationForm) }} {{ form_row(registrationForm.email) }} {{ form_row(registrationForm.plainPassword, { label: 'Password' }) }} {# {{ form_row(registrationForm.agreeTerms) }}#} {{ form_end(registrationForm) }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('apps_table') }} {% endblock %}