mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
14 lines
342 B
HTML
14 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 %}
|