summaryrefslogtreecommitdiff
path: root/app/Template/user/new.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/user/new.php')
-rw-r--r--app/Template/user/new.php42
1 files changed, 21 insertions, 21 deletions
diff --git a/app/Template/user/new.php b/app/Template/user/new.php
index e56f38b1..ba7a3881 100644
--- a/app/Template/user/new.php
+++ b/app/Template/user/new.php
@@ -1,44 +1,44 @@
<section id="main">
<div class="page-header">
<ul>
- <li><i class="fa fa-user fa-fw"></i><?= $this->a(t('All users'), 'user', 'index') ?></li>
+ <li><i class="fa fa-user fa-fw"></i><?= $this->url->link(t('All users'), 'user', 'index') ?></li>
</ul>
</div>
<section>
- <form method="post" action="<?= $this->u('user', 'save') ?>" autocomplete="off">
+ <form method="post" action="<?= $this->url->href('user', 'save') ?>" autocomplete="off">
- <?= $this->formCsrf() ?>
+ <?= $this->form->csrf() ?>
- <?= $this->formLabel(t('Username'), 'username') ?>
- <?= $this->formText('username', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?><br/>
+ <?= $this->form->label(t('Username'), 'username') ?>
+ <?= $this->form->text('username', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?><br/>
- <?= $this->formLabel(t('Name'), 'name') ?>
- <?= $this->formText('name', $values, $errors) ?><br/>
+ <?= $this->form->label(t('Name'), 'name') ?>
+ <?= $this->form->text('name', $values, $errors) ?><br/>
- <?= $this->formLabel(t('Email'), 'email') ?>
- <?= $this->formEmail('email', $values, $errors) ?><br/>
+ <?= $this->form->label(t('Email'), 'email') ?>
+ <?= $this->form->email('email', $values, $errors) ?><br/>
- <?= $this->formLabel(t('Password'), 'password') ?>
- <?= $this->formPassword('password', $values, $errors, array('required')) ?><br/>
+ <?= $this->form->label(t('Password'), 'password') ?>
+ <?= $this->form->password('password', $values, $errors, array('required')) ?><br/>
- <?= $this->formLabel(t('Confirmation'), 'confirmation') ?>
- <?= $this->formPassword('confirmation', $values, $errors, array('required')) ?><br/>
+ <?= $this->form->label(t('Confirmation'), 'confirmation') ?>
+ <?= $this->form->password('confirmation', $values, $errors, array('required')) ?><br/>
- <?= $this->formLabel(t('Default project'), 'default_project_id') ?>
- <?= $this->formSelect('default_project_id', $projects, $values, $errors) ?><br/>
+ <?= $this->form->label(t('Default project'), 'default_project_id') ?>
+ <?= $this->form->select('default_project_id', $projects, $values, $errors) ?><br/>
- <?= $this->formLabel(t('Timezone'), 'timezone') ?>
- <?= $this->formSelect('timezone', $timezones, $values, $errors) ?><br/>
+ <?= $this->form->label(t('Timezone'), 'timezone') ?>
+ <?= $this->form->select('timezone', $timezones, $values, $errors) ?><br/>
- <?= $this->formLabel(t('Language'), 'language') ?>
- <?= $this->formSelect('language', $languages, $values, $errors) ?><br/>
+ <?= $this->form->label(t('Language'), 'language') ?>
+ <?= $this->form->select('language', $languages, $values, $errors) ?><br/>
- <?= $this->formCheckbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?>
+ <?= $this->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') ?>
- <?= $this->a(t('cancel'), 'user', 'index') ?>
+ <?= $this->url->link(t('cancel'), 'user', 'index') ?>
</div>
</form>
</section>