1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-03-14 17:57:39 +00:00

18 lines
357 B
HTML
Raw Normal View History

2019-08-11 16:21:59 +02:00
{% extends "base.html" %}
2019-08-10 19:00:16 +02:00
{% comment %}
SPDX-License-Identifier: GPL-2.0-or-later
{% endcomment %}
{% load i18n %}
2019-08-11 19:54:44 +02:00
{% load crispy_forms_tags %}
2019-08-11 16:21:59 +02:00
{% block title %}{% trans "Log in" %}{% endblock %}
{% block content %}
<h2>Login</h2>
<form method="post">
{% csrf_token %}
2019-08-11 17:52:53 +02:00
{{ form | crispy }}
2019-08-11 16:21:59 +02:00
<button type="submit">Login</button>
</form>
{% endblock %}