1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/project/edit.php

15 lines
534 B
PHP
Raw Normal View History

2014-10-22 19:59:09 +02:00
<div class="page-header">
<h2><?= t('Edit project') ?></h2>
</div>
2015-01-16 14:23:05 +01:00
<form method="post" action="<?= $this->u('project', 'update', array('project_id' => $values['id'])) ?>" autocomplete="off">
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formCsrf() ?>
<?= $this->formHidden('id', $values) ?>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Name'), 'name') ?>
2015-02-25 17:29:06 +01:00
<?= $this->formText('name', $values, $errors, array('required', 'maxlength="50"')) ?>
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
</div>
</form>