{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans 'Libravatar OpenID Login' %}{% endblock title %} {% block content %}

{% trans 'OpenID Login' %}

{% if openid_form.errors %}

{% trans "Please correct errors below:" %}
{% if openid_form.openid_identifier.errors %} {{ openid_form.openid_identifier.errors|join:", " }} {% endif %} {% if openid_form.next.errors %} {{ openid_form.next.errors|join:", " }} {% endif %}

{% endif %}
{% csrf_token %} {% url django.contrib.auth.views.login as login_url %}

{% trans "You'd rather use a regular account?" %} {% blocktrans %}That's fine, just use this login form instead.{% endblocktrans %}

 {{ form.openid_identifier }}

 {% trans 'Cancel' %}

{% endblock content %}