This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
django-kerberos/sample/sample/templates/registration/login.html

10 lines
153 B
HTML

{% extends "base.html" %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button>Login</button>
</form>
{% endblock %}