1234567891011121314151617181920212223 |
- {% extends 'base.html.twig' %}
- {% block title %}Register{% endblock %}
- {% block content %}
- {% for flash_error in app.flashes('verify_email_error') %}
- <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
- {% endfor %}
- <h1>Register</h1>
- {{ form_errors(registrationForm) }}
- {{ form_start(registrationForm) }}
- {{ form_row(registrationForm.email) }}
- {{ form_row(registrationForm.plainPassword, {
- label: 'Password'
- }) }}
- {{ form_row(registrationForm.agreeTerms) }}
- <button type="submit" class="btn">Register</button>
- {{ form_end(registrationForm) }}
- {% endblock %}
|