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

Register

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