]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/changepw.html
deleting the test file
[osqa.git] / forum / skins / default / templates / changepw.html
1 {% extends "base.html" %}
2 <!-- changepw.html -->
3 {% load i18n %}
4 {% block head %}{% endblock %}
5 {% block title %}{% spaceless %}{% trans "Change password" %}{% endspaceless %}{% endblock %}
6 {% block content %}
7 <div class="headNormal">{% trans "Account: change password" %}</div>
8 <p class="message">{% blocktrans %}This is where you can change your password. Make sure you remember it!{% endblocktrans %}</p>
9 <div class="aligned">
10         <form action="" method="post" accept-charset="utf-8">
11         <ul id="changepw-form" class="form-horizontal-rows">
12         {{form.as_ul}}
13         </ul>
14         <div class="submit-row"><input type="submit" class="submit" value="{% trans "Change password" %}" /></div>
15         </form>
16         </div>
17 {% endblock %}
18 <!-- end changepw.html -->