summaryrefslogtreecommitdiffstats
path: root/templates/authopenid/sendpw.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:15:28 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:15:28 -0400
commit35b666224a05fbd249b1c51a0a48fb95b246fe9a (patch)
treebfce966ce040dd849e8cc35a012d18f7632ad6b1 /templates/authopenid/sendpw.html
parent5b45e526c74faf55110ff0afdcba19797d7e0f4d (diff)
downloadaskbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.tar.gz
askbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.tar.bz2
askbot-35b666224a05fbd249b1c51a0a48fb95b246fe9a.zip
adding all files again
Diffstat (limited to 'templates/authopenid/sendpw.html')
-rw-r--r--templates/authopenid/sendpw.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/authopenid/sendpw.html b/templates/authopenid/sendpw.html
new file mode 100644
index 00000000..a9488c4c
--- /dev/null
+++ b/templates/authopenid/sendpw.html
@@ -0,0 +1,34 @@
+{% extends "base.html" %}
+{% load i18n %}
+{% block title %}{% spaceless %}{% trans "Send new password" %}{% endspaceless %}{% endblock %}
+
+{% block content %}
+<div id="main-bar" class="">
+ <h3>{% trans "Send new password" %}</h3>
+
+</div>
+<div class="paragraph">
+{% trans "Lost your password? No problem - here you can reset it." %}<br>
+{% trans "Please enter your username below and new password will be sent to your registered e-mail" %}
+</div>
+{% if form.errors %}
+<p class="errors"><span class="big">{% "Sorry, looks like we have some errors:" %}</span><br>
+ {% if form.username.errors %}
+ <span class="error">{{ form.username.errors|join:", " }}</span>
+ {% endif %}
+</p>
+{% endif %}
+{% if msg %}
+ <div class="paragraph error">{{ msg }}</div>
+{% endif %}
+
+<div class="aligned">
+ <form action="." method="post" accept-charset="utf-8">
+ <div id="form-row"><label for="id_username">{% trans "User name" %}:</label>{{ form.username }}</div>
+
+ <p style="padding-top:10px"><input type="submit" value="{% trans "Reset password" %}"> <a href="{% url user_signin %}">{% trans "return to login" %}</a></p>
+
+ </form>
+ <span class="darkred">{% trans "Note: your new password will be activated only after you click the activation link in the email message" %}</span>
+</div>
+{% endblock %}