diff --git a/templates/openid/login.html b/templates/openid/login.html new file mode 100644 index 0000000..91c78ce --- /dev/null +++ b/templates/openid/login.html @@ -0,0 +1,39 @@ +{% extends 'base.html' %} +{% load i18n %} +{% load static %} + +{% block title %}{% trans 'federated avatar hosting service' %}{% endblock %} + +{% 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 'login' as login_url %} +

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

+ +

  +

+ +

+{% trans 'Cancel' %}

+ +
+ +
+
+ +{% endblock %}