mirror of
https://github.com/SrIzan10/kanboard.git
synced 2026-05-01 10:45:29 +00:00
9 lines
443 B
PHP
9 lines
443 B
PHP
<form method="post" action="<?= $this->url->href('CommentController', 'save', array('task_id' => $task['id'])) ?>" autocomplete="off">
|
|
<?= $this->form->csrf() ?>
|
|
<?= $this->form->hidden('task_id', $values) ?>
|
|
<?= $this->form->hidden('user_id', $values) ?>
|
|
|
|
<?= $this->form->textEditor('comment', $values, $errors, array('required' => true, 'aria-label' => t('New comment'))) ?>
|
|
<?= $this->modal->submitButtons() ?>
|
|
</form>
|