summaryrefslogtreecommitdiffstats
path: root/templates/settings/login_security.html
blob: 701b32588d0aa10edd5c1b67a9ff971e72939536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "settings/base.html" %}

{% block subtitle %}Login & Security{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Login</legend>
            {% include "forms/_field.html" with field=form.email %}
        </fieldset>
        <fieldset>
            <legend>Password</legend>
            <p>To change your password, please trigger a <a href="{% url "trigger_reset" %}">password reset</a>.
        </fieldset>
    </form>
{% endblock %}