Request resend of verification mail

This commit is contained in:
Frank
2026-01-14 13:09:32 +01:00
parent a90489da28
commit a6df6cbf0c
7 changed files with 103 additions and 3 deletions

View File

@@ -5,7 +5,12 @@
{% block body %}
<form method="post">
{% if error %}
<div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div>
<div class="alert alert-danger">
{{ error.messageKey|trans(error.messageData, 'security')|raw }}
{% if error.messageData['%resend_link%'] is defined %}
<a href="{{ error.messageData['%resend_link%'] }}">Resend activation link</a>
{% endif %}
</div>
{% endif %}
{% if app.user %}
@@ -41,5 +46,8 @@
<div class="mt-3">
<a href="{{ path('app_forgot_password_request') }}">Forgot your password?</a>
</div>
<div class="mt-1">
<a href="{{ path('app_verify_resend_email') }}">Didn't receive activation email?</a>
</div>
</form>
{% endblock %}