18 lines
492 B
HTML
18 lines
492 B
HTML
{% extends "base.html" %}
|
|
{% block region %}{% endblock %}
|
|
|
|
{% block title %}Password Reset{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="page_head">
|
|
<h2>Password reset initiated</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>
|
|
We've emailed you instructions for resetting your password.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|