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

Register

{{ form_start(registrationForm) }}
{{ form_widget(registrationForm.username, {'attr': {'placeholder':'Username'}} ) }}
{{ form_widget(registrationForm.plainPassword, {'attr': {'placeholder':'Password'}} ) }}
{{ form_widget(registrationForm.firstName, {'attr': {'placeholder':'First Name'}} ) }}
{{ form_widget(registrationForm.lastName, {'attr': {'placeholder':'Last Name'}} ) }}
{{ form_widget(registrationForm.email, {'attr': {'placeholder':'eMail'}} ) }}
{{ form_row(registrationForm.agreeTerms) }} {{ form_end(registrationForm) }}
{% endblock %}