23 lines
608 B
Twig
23 lines
608 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 %}
|
|
|
|
<div class="register-info">
|
|
{{ form(registration_form) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|