summaryrefslogtreecommitdiffstats
path: root/templates/auth/login.html
blob: 96c0e981d57c7be5598da7fbf25a73353adbfe5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block title %}Login{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Login</legend>
            {% for field in form %}
                {% include "forms/_field.html" %}
            {% endfor %}
        </fieldset>
        <input type="hidden" name="next" value="{{ next }}" />
        <div class="buttons">
            <a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
            <button>Login</button>
        </div>
    </form>
{% endblock %}