2012-04-05 07:10:38 +00:00
|
|
|
{% extends "myhome_base.html" %}
|
2012-10-30 06:42:21 +00:00
|
|
|
{% load i18n %}
|
2011-04-30 05:18:32 +00:00
|
|
|
|
2012-10-30 06:42:21 +00:00
|
|
|
{% block title %}{% trans "Password Reset" %}{% endblock %}
|
2011-11-27 09:52:14 +00:00
|
|
|
{% block main_panel %}
|
2012-05-22 08:21:16 +00:00
|
|
|
<div class="narrow-panel">
|
2012-10-30 06:42:21 +00:00
|
|
|
<h2>{% trans "Password Reset" %}</h2>
|
2012-05-22 08:21:16 +00:00
|
|
|
<form action="" method="post">
|
2012-10-30 06:42:21 +00:00
|
|
|
<label for="id_email">{% trans "Your email used in login: " %}</label>
|
2012-05-22 08:21:16 +00:00
|
|
|
{{ form.email }}
|
|
|
|
{{ form.email.errors }}
|
2012-10-30 06:42:21 +00:00
|
|
|
<p class="note">{% trans "We will send you an email to set new password" %}</p>
|
|
|
|
<input type="submit" value="{% trans "Submit" %}" class="submit" />
|
2012-05-22 08:21:16 +00:00
|
|
|
</form>
|
2012-05-18 13:50:48 +00:00
|
|
|
</div>
|
2011-04-30 05:18:32 +00:00
|
|
|
{% endblock %}
|