blob: 9d82224847ecedad94135a6dd3131142a51e7c81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>
|