summaryrefslogtreecommitdiff
path: root/templates/project_new.php
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-01-25 14:56:02 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-01-25 14:56:02 -0500
commit9383a15af699ede77142d040b65118e15754a2ca (patch)
treeb550b5adf5bcf8f5a8793c188cc5630f26a27d49 /templates/project_new.php
First commit
Diffstat (limited to 'templates/project_new.php')
-rw-r--r--templates/project_new.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/project_new.php b/templates/project_new.php
new file mode 100644
index 00000000..5ce6f97d
--- /dev/null
+++ b/templates/project_new.php
@@ -0,0 +1,20 @@
+<section id="main">
+ <div class="page-header">
+ <h2><?= t('New project') ?></h2>
+ <ul>
+ <li><a href="?controller=project"><?= t('All projects') ?></a></li>
+ </ul>
+ </div>
+ <section>
+ <form method="post" action="?controller=project&amp;action=save" autocomplete="off">
+
+ <?= 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') ?> <a href="?controller=project"><?= t('cancel') ?></a>
+ </div>
+ </form>
+ </section>
+</section> \ No newline at end of file