Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / reclaim.html @ 64cd4730

History | View | Annotate | Download (494 Bytes)

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-uniq" name="uniq" 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 %}