Files
dss/templates/openid/login.html
2013-06-19 19:24:50 +01:00

20 lines
403 B
HTML
Executable File

{% extends "openid/base.html" %}
{% load url from future %}
{% load i18n %}
{% block head_title %}OpenID Sign In{% endblock %}
{% block content %}
<h1>{% trans 'OpenID Sign In' %}</h1>
<form id="openid_login_form" class="openid_login" method="post" action="{% url 'openid_login' %}">
{% csrf_token %}
{{form.as_p}}
<button type="submit">Sign In</button>
</form>
{% endblock %}