Kanboard-Prod/app/Template/comment_list/create.php

9 lines
419 B
PHP

<div class="page-header">
<h2><?= t('Add a comment') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('CommentListController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
<?= $this->form->textEditor('comment', array(), array(), array('required' => true)) ?>
<?= $this->modal->submitButtons() ?>
</form>