diff options
Diffstat (limited to 'application/views/user')
-rw-r--r-- | application/views/user/invite.php | 6 | ||||
-rw-r--r-- | application/views/user/register.php | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/application/views/user/invite.php b/application/views/user/invite.php index d3e2fb7a6..042ba0b61 100644 --- a/application/views/user/invite.php +++ b/application/views/user/invite.php @@ -26,6 +26,12 @@ <td><?php echo $i++; ?></td> <td><?php echo anchor("user/register/".$item["key"], $item["key"]) ?></td> <td><?php echo date("Y/m/d H:i", $item["date"]) ?></td> + <td> + <?php echo form_open('user/delete_invitation_key'); ?> + <input class="btn btn-danger btn-xs" type="submit" value="Delete" name="delete" /> + <input type="hidden" name="key" value="<?php echo $item["key"]; ?>" /> + </form> + </td> </tr> <?php endforeach; ?> </tbody> diff --git a/application/views/user/register.php b/application/views/user/register.php index af4558ff9..0f03a2f00 100644 --- a/application/views/user/register.php +++ b/application/views/user/register.php @@ -9,6 +9,7 @@ <label class="control-label col-lg-2 col-md-2" for="inputUsername">Username</label> <div class="col-lg-5 col-md-5"> <input type="text" id="inputUsername" name="username" placeholder="Username" value="<?php echo $values["username"]; ?>" class="form-control"> + <span class="help-block">The username may contain up to 32 chars of a-z0-9 (only lowercase characters).</span> </div> </div> </div> |