authentic2-auth-kerberos/src/authentic2_auth_kerberos/templates/authentic2_auth_kerberos/login.html

14 lines
382 B
HTML

{% load i18n %}
<div>
{% if autologin %}
{% include "authentic2_auth_kerberos/autologin.html" %}
{% endif %}
<form id='kerberos-form' method="post">
{% csrf_token %}
<button name="login-kerberos" value="1">{% trans "Login" %}</button>
{% if cancel %}
<input type="submit" name="cancel" value="{% trans 'Cancel' %}"/>
{% endif %}
</form>
</div>