15 lines
291 B
HTML
15 lines
291 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% load account %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="row">
|
||
|
<div class="col-md-6 col-md-offset-3">
|
||
|
<h1>Reset e-mail sent</h1>
|
||
|
<p>
|
||
|
We have now sent an e-mail with instructions for how to reset your
|
||
|
password.
|
||
|
</p>
|
||
|
</div>
|
||
|
{% endblock %}
|