Initial commit. Move from pithos repository.
[astakos] / astakos / im / templates / reset.html
1 {% extends "base.html" %}
2
3 {% block title%}
4         <h2>Reset password</h2>
5 {% endblock title%}
6
7 {% block body %}
8 <form action="{% url astakos.im.target.local.reset_password %}" method="post">
9   <div class="clearfix">
10     <label for="user-uniq">password</label>
11     <div class="input">
12       <input class="span4" id="user-password" name="password" type="password" />
13     </div>
14   </div>
15   
16   <div class="actions">
17     <input type="hidden" name="auth" value="{{ auth }}">
18     <input type="hidden" name="next" value="{{ next }}">
19     <input type="hidden" name="username" value="{{ username }}">
20     <button type="submit" class="btn primary">Reset</button>
21   </div>
22 </form>
23 {% endblock body %}