1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-17 14:37:58 +00:00
seahub/templates/registration/password_reset_form.html

17 lines
571 B
HTML
Raw Normal View History

{% extends "myhome_base.html" %}
{% load i18n %}
{% block title %}{% trans "Password Reset" %}{% endblock %}
{% block main_panel %}
<div class="narrow-panel">
<h2>{% trans "Password Reset" %}</h2>
<form action="" method="post">
<label for="id_email">{% trans "Your email used in login: " %}</label>
{{ form.email }}
{{ form.email.errors }}
<p class="note">{% trans "We will send you an email to set new password" %}</p>
<input type="submit" value="{% trans "Submit" %}" class="submit" />
</form>
</div>
{% endblock %}