17 lines
391 B
Twig
17 lines
391 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
|
|
{% endfor %}
|
|
|
|
<h1>Register</h1>
|
|
|
|
<div style="position: relative; top: 10em; left: 20em;">
|
|
{{ form(registration_form) }}
|
|
</div>
|
|
|
|
{% endblock %}
|