18 lines
460 B
Twig
18 lines
460 B
Twig
{% 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 %}
|