{% extends "base.html" %} {% load i18n %} {% block content %}

{% blocktrans %}Log in using OpenID{% endblocktrans %}

{% if url %}

{% blocktrans %}OpenID authentication succeeded; you authenticated as{% endblocktrans %} {{ url|escape }}.

{% else %}

{% blocktrans %}To log in, enter an OpenID in the box below.{% endblocktrans %}

{% if message %}
{{ message|escape }}
{% endif %} {% if error %}
{{ error|escape }}
{% endif %} {% if failure_reason %}
{{ failure_reason|escape }}
{% endif %}
{{ form }}
{% endif %} {% endblock %}