34 lines
1.2 KiB
Twig
34 lines
1.2 KiB
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'>
|
|
<section class="section-widget">
|
|
{{ form_start(registration_form) }}
|
|
<fieldset class="section-widget-form">
|
|
<legend class="section-form-legend">
|
|
<h1>{{ "Register a new account" | trans }}</h1>
|
|
</legend>
|
|
<ul>
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
<li class="alert alert-danger" role="alert">{{ flashError }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{{ form_row(registration_form.nickname) }}
|
|
{{ form_row(registration_form.email) }}
|
|
{{ form_row(registration_form.password) }}
|
|
{{ form_row(registration_form.register) }}
|
|
</fieldset>
|
|
{{ form_end(registration_form) }}
|
|
</section>
|
|
</div>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|