Statistics
| Branch: | Tag: | Revision:

root / pithos / im / templates / local_create.html @ b4c241e6

History | View | Annotate | Download (1.1 kB)

1
{% extends "base.html" %}
2

    
3
{% block title%}
4
        <h2>Sign up</h2>
5
{% endblock title%}
6

    
7
{% block body %}
8
<form action="{% url pithos.im.views.local_create %}" 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="clearfix">
17
    <label for="user-password">Password</label>
18
    <div class="input">
19
      <input class="span4" id="user-password" name="password" type="password" />
20
    </div>
21
  </div>
22
  
23
  <div class="clearfix">
24
    <label for="user-realname">Real Name</label>
25
    <div class="input">
26
      <input class="span4" id="user-realname" name="realname" type="text" />
27
    </div>
28
  </div>
29
  
30
  <div class="clearfix">
31
    <label for="user-email">Email</label>
32
    <div class="input">
33
      <input class="span4" id="user-email" name="email" type="text" />
34
    </div>
35
  </div>
36
  
37
  <div class="actions">
38
    <button type="submit" class="btn primary">Create</button>
39
    <button type="reset" class="btn">Reset</button>
40
  </div>
41
</form>
42
{% endblock body %}