mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
19 lines
748 B
PHP
19 lines
748 B
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<ul>
|
|
<li><i class="fa fa-users fa-fw"></i><?= $this->url->link(t('View all groups'), 'group', 'index') ?></li>
|
|
</ul>
|
|
</div>
|
|
<form method="post" action="<?= $this->url->href('group', 'save') ?>" autocomplete="off">
|
|
<?= $this->form->csrf() ?>
|
|
|
|
<?= $this->form->label(t('Name'), 'name') ?>
|
|
<?= $this->form->text('name', $values, $errors, array('autofocus', 'required', 'maxlength="100"')) ?>
|
|
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
|
<?= t('or') ?>
|
|
<?= $this->url->link(t('cancel'), 'group', 'index') ?>
|
|
</div>
|
|
</form>
|
|
</section>
|