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

{% block title %}Password Set{% endblock %}

{% block content %}
    <form>
        <fieldset>
            <legend>Password Set</legend>
            <p>
                Your password for <tt>{{ email }}</tt> has been set. You can
                now <a href="/auth/login/">login</a>.
            </p>
        </fieldset>
    </form>
{% endblock %}