You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
630 B
21 lines
630 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
|
|
{% endfor %}
|
|
|
|
<h1>Register</h1>
|
|
|
|
{{ form_start(registrationForm) }}
|
|
{{ form_row(registrationForm.email) }}
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
label: 'Password'
|
|
}) }}
|
|
{{ form_row(registrationForm.agreeTerms) }}
|
|
|
|
<button type="submit" class="btn btn-primary">Register</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|
|
|