before switch to turbo

This commit is contained in:
2022-11-10 13:48:29 +01:00
parent 219f4097ff
commit 23139a5835
35 changed files with 731 additions and 139 deletions

View File

@@ -0,0 +1,20 @@
{% extends '@default/base.html.twig' %}
{% block title %}Verify eMail{% endblock %}
{% block body %}
<div class="container">
<div class="row">
<div class="login-form bg-dark mt-4 p-4">
<h1 class="h3 mb-3 font-weight-normal">Verify your Email</h1>
<p>
A verification email was sent - please check it to enable your
account before logging in.
</p>
<form method="POST">
<button type="submit" class="btn btn-primary">Re-send Email</button>
</form>
</div>
</div>
</div>
{% endblock %}