{% 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=_('Sign In')) }}{% endblock %} {% block content %}

{% trans %}Sign In to Your Account{% endtrans %}

{% if message %}
{{ macros.draw_message_icon(message) }}

{{ message.message }}

{% if bad_password %}

{% trans %}Click here if you forgot your sign in credentials.{% endtrans %}

{% endif %} {% if not_active %}

{% trans %}Click here if you didn't receive activation e-mail.{% endtrans %}

{% endif %} {% if banned_account.reason_user %} {{ banned_account.reason_user|markdown|safe }} {% endif %} {% if banned_account.expires %}

{% trans ban_expires=banned_account.expires|date %}Your ban will expire on {{ ban_expires }}{% endtrans %}

{% endif %}
{% endif %}
{{ form_theme.form_widget(form, horizontal=true, width=6) }}
{% endblock %}