2014-07-20 12:26:15 +02:00
|
|
|
<section id="main">
|
|
|
|
<div class="page-header">
|
|
|
|
<ul>
|
2015-01-16 14:23:05 +01:00
|
|
|
<li><i class="fa fa-folder fa-fw"></i><?= $this->a(t('All projects'), 'project', 'index') ?></li>
|
2014-07-20 12:26:15 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<section>
|
2015-01-16 14:23:05 +01:00
|
|
|
<form method="post" action="<?= $this->u('project', 'save') ?>" autocomplete="off">
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= $this->formCsrf() ?>
|
|
|
|
<?= $this->formHidden('is_private', $values) ?>
|
|
|
|
<?= $this->formLabel(t('Name'), 'name') ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
<?= $this->formText('name', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
2015-01-16 14:23:05 +01:00
|
|
|
<?= t('or') ?> <?= $this->a(t('cancel'), 'project', 'index') ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
</section>
|