mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
No EOL
520 B
PHP
15 lines
No EOL
520 B
PHP
<div class="page-header">
|
|
<h2><?= t('Edit project') ?></h2>
|
|
</div>
|
|
<form method="post" action="<?= Helper\u('project', 'update', array('project_id' => $values['id'])) ?>" autocomplete="off">
|
|
|
|
<?= Helper\form_csrf() ?>
|
|
<?= Helper\form_hidden('id', $values) ?>
|
|
|
|
<?= Helper\form_label(t('Name'), 'name') ?>
|
|
<?= Helper\form_text('name', $values, $errors, array('required')) ?>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
</div>
|
|
</form>
|