Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / users_invite.html @ 483c9197

History | View | Annotate | Download (904 Bytes)

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

    
3
{% block body %}
4

    
5
<form action="{% url synnefo.admin.views.users_invite %}" method="post">
6
  <div class="clearfix">
7
    <label for="user-inviter">Inviter ID</label>
8
    <div class="input input-append">
9
      <input class="small append-user" id="user-inviter" name="inviter" type="text" />
10
      <label class="add-on"><a href=""></a></label>
11
    </div>
12
  </div>
13

    
14
  <div class="clearfix">
15
    <label for="user-realname">Invitee Real Name</label>
16
    <div class="input">
17
      <input class="large" id="user-realname" name="realname" type="text" />
18
    </div>
19
  </div>
20

    
21
  <div class="clearfix">
22
    <label for="user-uniq">Invitee Uniq</label>
23
    <div class="input">
24
      <input class="large" id="user-uniq" name="uniq" type="text" />
25
    </div>
26
  </div>
27

    
28
  <div class="actions">
29
    <button type="submit" class="btn primary">Invite</button>
30
  </div>
31
</form>
32

    
33
{% endblock body %}