{% extends "base.html" %} {% block title %}Login{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Resend confirmation instructions

{% from "security/_macros.html" import render_field_with_errors, render_field %} {% include "security/_messages.html" %}
{{ send_confirmation_form.hidden_tag() }} {{ render_field_with_errors(send_confirmation_form.email) }} {{ render_field(send_confirmation_form.submit) }}
{% include "security/_menu.html" %} {% endblock %}