scrutiny/scrutiny/templates/registration/login.html

11 lines
215 B
HTML

{% extends "scrutiny/base.html" %}
{% load gadjo i18n %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|as_template }}
<input type="submit" value="{% trans 'Log in' %}" />
</form>
{% endblock %}