Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.1 kB)

1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <meta charset="utf-8" />
5
  <title>Invitations</title>
6
  <link rel="stylesheet" href="/im/static/bootstrap.css">
7
</head>
8
<body>
9
<div class="container">
10
  <h3>You have {{ user.invitations }} invitation{{ user.invitations|pluralize }} left.</h3>
11

    
12
  {% if message %}
13
  <br />
14
  <div class="alert-message {{ status }}">
15
    <p>{{ message }}</p>
16
  </div>
17
  {% endif %}
18

    
19
  {% if user.invitations %}
20
  <br />
21
  <h4>Invite someone else:</h4>
22
  <form method="post">
23
    <div class="clearfix">
24
      <label for="user-realname">Name</label>
25
      <div class="input">
26
        <input type="text" class="span4" id="user-realname" name="realname" />
27
      </div>
28
    </div>
29

    
30
    <div class="clearfix">
31
      <label for="user-uniq">Email</label>
32
      <div class="input">
33
        <input type="text" class="span4" id="user-uniq" name="uniq" />
34
      </div>
35
    </div>
36

    
37
    <div class="actions">
38
      <button type="reset" class="btn">Reset</button>
39
      <button type="submit" class="btn primary">Invite</button>
40
    </div>
41
  </form>
42
  {% endif %}
43
</div>
44
</body>
45
</html>