1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-25 10:11:24 +00:00
seahub/templates/registration/password_reset_form.html

16 lines
471 B
HTML
Raw Normal View History

{% extends "myhome_base.html" %}
{% block title %}密码重置{% endblock %}
{% block main_panel %}
<div class="narrow-panel">
<h2>密码重置</h2>
<form action="" method="post">
<label for="id_email">邮箱:</label>
<span>(我们会把新密码设置说明通过邮件发送给您)</span>
{{ form.email }}
{{ form.email.errors }}
2012-06-06 03:52:37 +00:00
<input type="submit" value="提交" class="submit" />
</form>
</div>
{% endblock %}