1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/user/new.php

45 lines
1.8 KiB
PHP
Raw Normal View History

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-user fa-fw"></i><?= $this->a(t('All users'), 'user', '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('user', 'save') ?>" autocomplete="off">
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formCsrf() ?>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Username'), 'username') ?>
<?= $this->formText('username', $values, $errors, array('autofocus', 'required')) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Name'), 'name') ?>
<?= $this->formText('name', $values, $errors) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Email'), 'email') ?>
<?= $this->formEmail('email', $values, $errors) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Password'), 'password') ?>
<?= $this->formPassword('password', $values, $errors, array('required')) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Confirmation'), 'confirmation') ?>
<?= $this->formPassword('confirmation', $values, $errors, array('required')) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Default project'), 'default_project_id') ?>
<?= $this->formSelect('default_project_id', $projects, $values, $errors) ?><br/>
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
<?= $this->formLabel(t('Timezone'), 'timezone') ?>
<?= $this->formSelect('timezone', $timezones, $values, $errors) ?><br/>
<?= $this->formLabel(t('Language'), 'language') ?>
<?= $this->formSelect('language', $languages, $values, $errors) ?><br/>
<?= $this->formCheckbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?>
2014-07-20 12:26:15 +02:00
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
2014-12-22 19:15:38 +01:00
<?= t('or') ?>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('cancel'), 'user', 'index') ?>
2014-07-20 12:26:15 +02:00
</div>
</form>
</section>
</section>