diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
commit | 10d96bfd668f445249190c52bedb2eb0e7e9410d (patch) | |
tree | 951bcf637b9371529a6552a2efd22e7a84707d9e /app/Template/user_invite/show.php | |
parent | 2f43d365a0aaeff638eb4731bcff6907b491633a (diff) |
Add user invitations
Diffstat (limited to 'app/Template/user_invite/show.php')
-rw-r--r-- | app/Template/user_invite/show.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Template/user_invite/show.php b/app/Template/user_invite/show.php new file mode 100644 index 00000000..9d822248 --- /dev/null +++ b/app/Template/user_invite/show.php @@ -0,0 +1,15 @@ +<div class="page-header"> + <h2><?= t('Invite people') ?></h2> +</div> +<form method="post" action="<?= $this->url->href('UserInviteController', 'save') ?>" autocomplete="off"> + <?= $this->form->csrf() ?> + + <?= $this->form->label(t('Emails'), 'emails') ?> + <?= $this->form->textarea('emails', $values, $errors, array('required', 'autofocus')) ?> + <p class="form-help"><?= t('Enter one email address by line.') ?></p> + + <?= $this->form->label(t('Add these people to this project'), 'project_id') ?> + <?= $this->form->select('project_id', $projects, $values, $errors) ?> + + <?= $this->modal->submitButtons() ?> +</form> |