summaryrefslogtreecommitdiff
path: root/app/Template/user_creation/local.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-01-22 18:45:17 -0500
committerFrederic Guillot <fred@kanboard.net>2017-01-22 18:45:17 -0500
commitb55810043d2cc061a2a873f4e053e9933cf07ec8 (patch)
tree80f3ff36b4eacc30e89eabd5341c8b40712ae741 /app/Template/user_creation/local.php
parent9b9543353f2a19643b61880c2d46b0c52b104d8a (diff)
Simplify user creation form
Diffstat (limited to 'app/Template/user_creation/local.php')
-rw-r--r--app/Template/user_creation/local.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/app/Template/user_creation/local.php b/app/Template/user_creation/local.php
deleted file mode 100644
index 08784925..00000000
--- a/app/Template/user_creation/local.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<div class="page-header">
- <h2><?= t('New local user') ?></h2>
-</div>
-<form method="post" action="<?= $this->url->href('UserCreationController', 'save') ?>" autocomplete="off">
- <?= $this->form->csrf() ?>
-
- <div class="form-columns">
- <div class="form-column">
- <?= $this->form->label(t('Username'), 'username') ?>
- <?= $this->form->text('username', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?>
-
- <?= $this->form->label(t('Name'), 'name') ?>
- <?= $this->form->text('name', $values, $errors) ?>
-
- <?= $this->form->label(t('Email'), 'email') ?>
- <?= $this->form->email('email', $values, $errors) ?>
-
- <?= $this->form->label(t('Password'), 'password') ?>
- <?= $this->form->password('password', $values, $errors, array('required')) ?>
-
- <?= $this->form->label(t('Confirmation'), 'confirmation') ?>
- <?= $this->form->password('confirmation', $values, $errors, array('required')) ?>
- </div>
-
- <div class="form-column">
- <?= $this->form->label(t('Add project member'), 'project_id') ?>
- <?= $this->form->select('project_id', $projects, $values, $errors) ?>
-
- <?= $this->form->label(t('Timezone'), 'timezone') ?>
- <?= $this->form->select('timezone', $timezones, $values, $errors) ?>
-
- <?= $this->form->label(t('Language'), 'language') ?>
- <?= $this->form->select('language', $languages, $values, $errors) ?>
-
- <?= $this->form->label(t('Role'), 'role') ?>
- <?= $this->form->select('role', $roles, $values, $errors) ?>
-
- <?= $this->form->checkbox('notifications_enabled', t('Enable email notifications'), 1, isset($values['notifications_enabled']) && $values['notifications_enabled'] == 1 ? true : false) ?>
- </div>
- </div>
-
- <?= $this->modal->submitButtons() ?>
-</form>