{% extends "security/base.html" %} {% from "security/_macros.html" import render_field_with_errors, render_field, header %} {% block content %} {% include "security/_messages.html" %} {{ header(_('Resend confirmation instructions')) }}
{{ send_confirmation_form.hidden_tag() }} {{ render_field_with_errors(send_confirmation_form.email) }} {{ render_field(send_confirmation_form.submit, class_="button is-link") }}
{% endblock %}