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.
14 lines
364 B
Twig
14 lines
364 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(signUpForm) }}
|
|
{% endblock %}
|