21 lines
670 B
Twig
21 lines
670 B
Twig
{% 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 %}
|