mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
21 lines
No EOL
779 B
PHP
21 lines
No EOL
779 B
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<ul>
|
|
<li><i class="fa fa-folder fa-fw"></i><?= Helper\a(t('All projects'), 'project', 'index') ?></li>
|
|
</ul>
|
|
</div>
|
|
<section>
|
|
<form method="post" action="<?= Helper\u('project', 'save') ?>" autocomplete="off">
|
|
|
|
<?= Helper\form_csrf() ?>
|
|
<?= Helper\form_hidden('is_private', $values) ?>
|
|
<?= Helper\form_label(t('Name'), 'name') ?>
|
|
<?= Helper\form_text('name', $values, $errors, array('autofocus', 'required')) ?>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
<?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'index') ?>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</section>
|