summaryrefslogtreecommitdiffstats
path: root/forum/templates/authopenid/sendpw.html
blob: 6241c8118b4ecbc03ce78759ac05acb824f2fc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base.html" %}
<!-- sendpw.html -->
{% load i18n %}
{% block title %}{% spaceless %}{% trans "Send new password" %}{% endspaceless %}{% endblock %}
{% block content %}
<div class="headNormal">
    {% trans "Send new password" %}
</div>
<p class="message">
{% trans "password recovery information" %}
</p>
{% if msg %}
    <p class="action-status"><span>{{msg}}</span><p>
{% endif %}

<div class="aligned">
	<form action="." method="post" accept-charset="utf-8">
        <ul id="emailpw-form" class="form-horizontal-rows">
            {{form.as_ul}}
        </ul>
        <p style="padding-top:10px"><input type="submit" class="submit" value="{% trans "Reset password" %}" /> 
        <a href="{% url user_signin %}"><span class="strong">{% trans "return to login" %}</span></a></p>
	</form>
</div>
{% endblock %}
<!-- end sendpw.html -->