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 flashError in app.flashes('verify_email_error') %}
  5.         <div class="alert alert-danger" role="alert">{{ flashError }}</div>
  6.     {% endfor %}
  7.     <h1>Register</h1>
  8.     {{ form_start(registrationForm) }}
  9.         {{ form_row(registrationForm.username) }}
  10.         {{ form_row(registrationForm.email) }}
  11.         {{ form_row(registrationForm.plainPassword, {
  12.             label: 'Password'
  13.         }) }}
  14.         {{ form_row(registrationForm.agreeTerms) }}
  15.         <button type="submit" class="btn btn-light">Register</button>
  16.     {{ form_end(registrationForm) }}
  17. {% endblock %}