diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
commit | 9383a15af699ede77142d040b65118e15754a2ca (patch) | |
tree | b550b5adf5bcf8f5a8793c188cc5630f26a27d49 /templates/user_new.php |
First commit
Diffstat (limited to 'templates/user_new.php')
-rw-r--r-- | templates/user_new.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/user_new.php b/templates/user_new.php new file mode 100644 index 00000000..0c753c2a --- /dev/null +++ b/templates/user_new.php @@ -0,0 +1,31 @@ +<section id="main"> + <div class="page-header"> + <h2><?= t('New user') ?></h2> + <ul> + <li><a href="?controller=user"><?= t('All users') ?></a></li> + </ul> + </div> + <section> + <form method="post" action="?controller=user&action=save" autocomplete="off"> + + <?= Helper\form_label(t('Username'), 'username') ?> + <?= Helper\form_text('username', $values, $errors, array('autofocus required')) ?><br/> + + <?= Helper\form_label(t('Password'), 'password') ?> + <?= Helper\form_password('password', $values, $errors, array('required')) ?><br/> + + <?= Helper\form_label(t('Confirmation'), 'confirmation') ?> + <?= Helper\form_password('confirmation', $values, $errors, array('required')) ?><br/> + + <?= Helper\form_label(t('Default Project'), 'default_project_id') ?> + <?= Helper\form_select('default_project_id', $projects, $values, $errors) ?><br/> + + <?= Helper\form_checkbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?> + + <div class="form-actions"> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <?= t('or') ?> <a href="?controller=user"><?= t('cancel') ?></a> + </div> + </form> + </section> +</section>
\ No newline at end of file |