20 lines
453 B
Twig
20 lines
453 B
Twig
|
{% extends '@default/base.html.twig' %}
|
||
|
|
||
|
{% block title %}Registration finished{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
|
||
|
<div class="container rounded">
|
||
|
<div class="row">
|
||
|
<div class="login-form bg-dark mt-4 p-4">
|
||
|
<h1 class="h3 mb-3 font-weight-normal">Registration finished</h1>
|
||
|
<p>You'll receive an email soon to confirm your identity.</p>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
|