{% extends "account/base.html" %} {% load i18n static %} {% block title %}{% trans "Login page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_og_title %}{% trans "Login page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_twitter_title %}{% trans "Login page" context "Html title" %} | {{ block.super }}{% endblock %} {% block content %}{{ block.super }}{% endblock %} {% block page_account_title %}{% trans "Log in to Vosae" %}{% endblock %} {% block page_account_content %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% if form.non_field_errors %}

{{form.non_field_errors|first}}

{% endif %}
{% csrf_token %} {% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.errors %} {% with field.errors|first as first_error %} - {{ first_error }} {% endwith %} {% elif field.help_text %} {{ field.help_text }} {% endif %}
{% endfor %}

{% trans "Forgot password?" %}

{% endblock %} {% block page_account_bottom %} {% trans "Don't have an account? Sign up" %} {% endblock %}