blob: 7100ab317a2348333927c3d043674717cad51d33 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<div class="page-header">
<h2><?= t('Attach a document') ?></h2>
</div>
<form action="?controller=task&action=upload&task_id=<?= $task['id'] ?>" method="post" enctype="multipart/form-data">
<input type="file" name="files[]" multiple />
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
</div>
</form>
|