templates/registration/register.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Register{% endblock %}
  3. {% block body %}
  4.     {% for flash_error in app.flashes('verify_email_error') %}
  5.         <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  6.     {% endfor %}
  7.     <h1>Register</h1>
  8.     {{ form_start(registrationForm) }}
  9.         {{ form_row(registrationForm.email) }}
  10.         {{ form_row(registrationForm.plainPassword, {
  11.             label: 'Password'
  12.         }) }}
  13.         {{ form_row(registrationForm.agreeTerms) }}
  14.         <button type="submit" class="btn">Register</button>
  15.     {{ form_end(registrationForm) }}
  16. {% endblock %}