summaryrefslogtreecommitdiff
path: root/app/Template/task_mail/create.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-18 20:21:48 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-18 20:21:48 -0500
commit11a774e555786182dd634676811e3c58f316dad0 (patch)
tree4dd0092b45d15d1c6ae1db613e37eb9bb009c0ec /app/Template/task_mail/create.php
parent93c05371a882b3c07d16457479129e42a2999492 (diff)
Send tasks by email
Diffstat (limited to 'app/Template/task_mail/create.php')
-rw-r--r--app/Template/task_mail/create.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/Template/task_mail/create.php b/app/Template/task_mail/create.php
new file mode 100644
index 00000000..9a1a26b3
--- /dev/null
+++ b/app/Template/task_mail/create.php
@@ -0,0 +1,17 @@
+<div class="page-header">
+ <h2><?= $this->text->e($task['title']) ?> &gt; <?= t('Send by email') ?></h2>
+</div>
+<form method="post" action="<?= $this->url->href('TaskMailController', 'send', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
+ <?= $this->form->csrf() ?>
+
+ <?= $this->form->label(t('Email'), 'email') ?>
+ <?= $this->form->email('email', $values, $errors, array('autofocus', 'required', 'tabindex="1"')) ?>
+
+ <?= $this->form->label(t('Subject'), 'subject') ?>
+ <?= $this->form->text('subject', $values, $errors, array('required', 'tabindex="2"')) ?>
+
+ <?= $this->modal->submitButtons(array(
+ 'submitLabel' => t('Send by email'),
+ 'tabindex' => 3,
+ )) ?>
+</form>