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

Register

{{ form_start(registrationForm) }} {{ form_row(registrationForm.username) }} {{ form_row(registrationForm.plainPassword, { label: 'Password' }) }} {{ form_row(registrationForm.agreeTerms) }} {{ form_end(registrationForm) }} {% endblock %}