gnu-social/templates/security/register.html.twig

23 lines
608 B
Twig
Raw Normal View History

{% extends 'stdgrid.html.twig' %}
2020-07-25 23:55:09 +01:00
{% block stylesheets %}
{{ parent() }}
<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 23:55:09 +01:00
{% 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 %}