summaryrefslogtreecommitdiffstats
path: root/application/views/user/invite.php
blob: 5be8b48a30d89a4d8853eb6c8f5523f6c7c5db63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php echo form_open('user/create_invitation_key'); ?>
  <input type="submit" value="Create new key" name="process" />
</form>

<p>
You are free to invite anyone you want to, but please keep in
mind that if this person violates the rules and is banned, your account will also be disabled.
</p>

<p>Unused invitation keys:</p>
<p>
<?php foreach($query as $key => $item): ?>
	<?php echo anchor("user/register/".$item["key"], $item["key"]); ?><br />
<?php endforeach; ?>
</p>