18 lines
516 B
Twig
18 lines
516 B
Twig
{% extends 'layout/auth.html.twig' %}
|
|
|
|
{% block title %}Resend verification email{% endblock %}
|
|
|
|
{% block auth_body %}
|
|
<p class="text-muted">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) }}
|
|
|
|
<div class="d-grid mt-3">
|
|
<button type="submit" class="btn btn-primary">Resend email</button>
|
|
</div>
|
|
{{ form_end(resendForm) }}
|
|
{% endblock %}
|