mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
15 lines
319 B
HTML
15 lines
319 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Password Reset{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form>
|
||
|
<fieldset>
|
||
|
<legend>Password Reset</legend>
|
||
|
<p>
|
||
|
Your password for <tt>{{ email }}</tt> has been reset!
|
||
|
</p>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock %}
|