2015-01-17 14:04:10 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n crispy_forms_tags %}
|
2023-04-16 22:11:32 +02:00
|
|
|
{% block title %}{{ block.super }} - {% translate "Sign in" %}{% endblock title %}
|
|
|
|
{% block page_title %}{% translate "Sign In" %}{% endblock %}
|
2015-01-17 14:04:10 +01:00
|
|
|
{% block content %}
|
2023-04-16 22:11:32 +02:00
|
|
|
<form action="" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="next" value="{{ next }}"/>
|
|
|
|
{{ form|crispy }}
|
|
|
|
<input type="submit" name="submit" value="{% translate 'Sign in' %}" class="btn btn-primary"/>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|