Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 lines
618B

  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.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 %}