Request resend of verification mail
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
Please confirm your email address by clicking the following link: <br><br>
|
||||
<a href="{{ signedUrl }}">Confirm my Email</a>.
|
||||
This link will expire in {{ expiresAtMessageKey|trans(expiresAtMessageData, 'VerifyEmailBundle') }}.
|
||||
If the link has expired or doesn't work, you can <a href="{{ url('app_verify_resend_email') }}">request a new one</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Resend verification email{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Resend verification email</h1>
|
||||
|
||||
<p>Enter your email address and we will send you a new link to verify your account.</p>
|
||||
|
||||
{{ form_errors(resendForm) }}
|
||||
|
||||
{{ form_start(resendForm) }}
|
||||
{{ form_row(resendForm.email) }}
|
||||
|
||||
<button type="submit" class="btn">Resend email</button>
|
||||
{{ form_end(resendForm) }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user