mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
15 lines
342 B
HTML
15 lines
342 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Password Reset Sent{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form>
|
||
|
<fieldset>
|
||
|
<legend>Password Reset Sent</legend>
|
||
|
<p>
|
||
|
Please check your email at <tt>{{ email }}</tt> for the reset link.
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock %}
|