5bb7e11fd0175b601f7b30b45bc24959608522d0
[astakos] / astakos / im / templates / reclaim.html
1 {% extends "base.html" %}
2
3 {% block title%}
4         <h2>Reclaim password</h2>
5 {% endblock title%}
6
7 {% block body %}
8 <form action="{% url astakos.im.views.reclaim_password %}" method="post">
9   <div class="clearfix">
10     <label for="user-uniq">Username</label>
11     <div class="input">
12       <input class="span4" id="user-username" name="username" type="text" />
13     </div>
14   </div>
15   
16   <div class="actions">
17     <button type="submit" class="btn primary">Go</button>
18   </div>
19 </form>
20 {% endblock body %}