mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-16 22:04:00 +00:00
20 lines
403 B
HTML
Executable File
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 %}
|