19 lines
376 B
HTML
19 lines
376 B
HTML
{% extends "openid/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}OpenID Sign In{% endblock head_title %}
|
|
|
|
{% 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 content %}
|