2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-07-25 03:06:55 +01:00
|
|
|
|
2020-07-25 23:55:09 +01:00
|
|
|
{% block stylesheets %}
|
|
|
|
{{ parent() }}
|
2021-04-29 23:47:42 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/security/security.css') }}">
|
2020-07-25 23:55:09 +01:00
|
|
|
{% endblock %}
|
2020-07-25 03:06:55 +01:00
|
|
|
|
2020-07-25 23:55:09 +01:00
|
|
|
{% block title %}Register{% endblock %}
|
2020-07-25 03:06:55 +01:00
|
|
|
|
2020-10-19 23:45:48 +01:00
|
|
|
{% block body %}
|
2021-04-29 23:47:42 +01:00
|
|
|
<div class='content'>
|
|
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
|
|
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
|
|
|
|
{% endfor %}
|
2020-10-19 23:45:48 +01:00
|
|
|
|
2021-07-26 15:30:55 +01:00
|
|
|
{{ form_start(registration_form) }}
|
|
|
|
<fieldset>
|
|
|
|
<legend>Register a new account</legend>
|
2021-07-26 17:14:24 +01:00
|
|
|
{{ form_row(registration_form.nickname) }}
|
|
|
|
<p></p>
|
|
|
|
{{ form_row(registration_form.email) }}
|
|
|
|
<p></p>
|
|
|
|
{{ form_row(registration_form.password) }}
|
|
|
|
<p></p>
|
2021-07-26 15:30:55 +01:00
|
|
|
{{ form_row(registration_form.register) }}
|
|
|
|
</fieldset>
|
|
|
|
{{ form_end(registration_form) }}
|
2020-10-19 23:22:31 +01:00
|
|
|
</div>
|
|
|
|
{% endblock body %}
|
2020-10-19 23:45:48 +01:00
|
|
|
|
|
|
|
{% block javascripts %}{% endblock %}
|