Files
Escapepage/templates/tech/registration/resend_verification_email.html.twig
T
2026-07-04 19:08:31 +02:00

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 %}