You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
679 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Sign Up{% endblock %}
{% block mainContent %}
<h1>Sign up</h1>
<p>
NOTE : after confirming your account email, it must be also validated by an administrator
<br>You'll receive an email when your account would be accepted
</p>
{{ 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">Request account</button>
{{ form_end(registrationForm) }}
{% endblock %}