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.
22 lines
670 B
Twig
22 lines
670 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Sign Up{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<h1>Sign up</h1>
|
|
<p>
|
|
<strong>NOTE :</strong> 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.newPassword) }}
|
|
{{ form_row(registrationForm.agreeTerms) }}
|
|
|
|
<button type="submit" class="btn btn-primary">Request account</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|