32 lines
969 B
Twig
32 lines
969 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/security/security.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class='content'>
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
|
|
{% endfor %}
|
|
|
|
{{ form_start(registration_form) }}
|
|
<fieldset>
|
|
<legend>Register a new account</legend>
|
|
{{ form_row(registration_form.nickname) }}
|
|
<p></p>
|
|
{{ form_row(registration_form.email) }}
|
|
<p></p>
|
|
{{ form_row(registration_form.password) }}
|
|
<p></p>
|
|
{{ form_row(registration_form.register) }}
|
|
</fieldset>
|
|
{{ form_end(registration_form) }}
|
|
</div>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|