{% extends "cranefly/layout.html" %} {% import "forms.html" as form_theme with context %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=_('Request new Activation E-mail')) }}{% endblock %} {% block content %}

{% trans %}Request new Activation E-mail{% endtrans %}

{% if message %}
{{ macros.draw_message(message) }}
{% endif %}
{{ form_theme.hidden_fields(form) }}
{{ form_theme.row(form.email, attrs={'class': 'span6', 'placeholder': _("Enter your e-mail address.")}) }} {{ form_theme.captcha(form, attrs={'class': 'span6'}) }}
{% endblock %}