mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-25 02:00:06 +00:00
16 lines
471 B
HTML
16 lines
471 B
HTML
{% 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 }}
|
|
<input type="submit" value="提交" class="submit" />
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|