nicer social auth
[wolnelektury.git] / wolnelektury / templates / openid / login.html
diff --git a/wolnelektury/templates/openid/login.html b/wolnelektury/templates/openid/login.html
new file mode 100644 (file)
index 0000000..afe7fe8
--- /dev/null
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% load ajaxable_tags %}
+
+
+{% block titleextra %}{% trans "OpenID Sign In" %}{% endblock %}
+
+
+{% block body %}
+
+<h1>{% trans 'OpenID Sign In' %}</h1>
+
+
+<form class="cuteform hidelabels" method="post" action="{% url openid_login %}">
+<ul>
+       {% csrf_token %}
+       {% with form|placeholdize as f %}
+       {{ f.as_ul }}
+    {% endwith %}
+    <li><input type="submit" value='{% trans "Login" %}' /></li>
+</ul>
+</form>
+
+{% endblock %}