13 lines
453 B
HTML
13 lines
453 B
HTML
|
{% extends "base.html" %}
|
||
|
{% load i18n crispy_forms_tags %}
|
||
|
{% block title %}{{ block.super }} - {% trans "Sign in" %}{% endblock title %}
|
||
|
{% block page_title %}{% trans "Sign In" %}{% endblock %}
|
||
|
{% block content %}
|
||
|
<form action="" method="post">
|
||
|
{% csrf_token %}
|
||
|
<input type="hidden" name="next" value="{{ next }}" />
|
||
|
{{ form|crispy }}
|
||
|
<input type="submit" name="submit" value="{% trans 'Sign in' %}" class="btn btn-primary" />
|
||
|
</form>
|
||
|
{% endblock %}
|