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.
20 lines
557 B
20 lines
557 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{{ 'register'|trans }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{{ 'register'|trans }}</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 btn-primary">{{ 'register'|trans }}</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|