{% extends "site_base.html" %} {% load i18n %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %} {% if messages %} {% for message in messages %} {{ message }}
{% endfor %} {% endif %} {% if auth_form.errors %}
{% trans "Your username and password didn't match. Please try again." %}
{% endif %}

{% if user.is_authenticated %} {% trans "Add a New OpenID Identity to Your Account" %} {% else %}

{% trans "Log in to" %} {{ site.name }}

{% endif %} {% if not user.is_authenticated %}
{{ auth_form.username.label_tag }} {{ auth_form.username }}
{{ auth_form.password.label_tag }} {{ auth_form.password }}

...{% trans "or log in with" %}:

{% endif %}
{% comment %}Initially visible provider buttons are inserted here{% endcomment %}
{% comment %}Translators: "more..." in this context means "Show more providers"{% endcomment %} {% endblock %}