summaryrefslogtreecommitdiff
path: root/dashboard/templates/registration/password_reset_complete.html
blob: dc972451fc50dec95008e00950d9b042715a58a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}
{% block region %}{% endblock %}

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

{% block content %}
  <div id="page_head">
    <h2>Password reset complete</h2>
  </div>

  <div class="ui-state-highlight ui-corner-all success">
   <span class="close ui-icon ui-icon-circle-close" style="display:none;"></span>
   <p>
      <span class="ui-icon ui-icon-check"></span>
      Your password has been reset. You can now <a href="/accounts/login">login</a>.
    </p>
  </div>

{% endblock %}