takahe/templates/auth/trigger_reset_success.html

15 lines
346 B
HTML
Raw Normal View History

2022-11-17 18:36:25 -08:00
{% extends "base.html" %}
{% block title %}Password Reset Sent{% endblock %}
{% block content %}
<form>
<fieldset>
<legend>Password Reset Sent</legend>
<p>
2023-01-14 09:32:48 -08:00
Please check your email at <code>{{ email }}</code> for the reset link.
2022-11-17 18:36:25 -08:00
</p>
</fieldset>
</form>
{% endblock %}