mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 07:10:59 +00:00
14 lines
346 B
HTML
14 lines
346 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 <code>{{ email }}</code> for the reset link.
|
|
</p>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|