summaryrefslogtreecommitdiffstats
path: root/templates/auth/reset_success.html
blob: 001e5d79b4e0af14f9d56c00d028277a89e39ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block title %}Password Reset{% endblock %}

{% block content %}
    <form>
        <fieldset>
            <legend>Password Reset</legend>
            <p>
                Your password for <tt>{{ email }}</tt> has been reset!
            </p>
        </fieldset>
    </form>
{% endblock %}