2014-06-06 14:22:09 +04:00
|
|
|
<div id="controls">
|
2014-02-19 19:53:29 +04:00
|
|
|
<form id="newuser" autocomplete="off">
|
2014-05-07 19:14:29 +04:00
|
|
|
<input id="newusername" type="text"
|
2014-11-10 12:52:47 +03:00
|
|
|
placeholder="<?php p($l->t('Username'))?>"
|
2017-03-18 18:00:21 +03:00
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" />
|
2014-03-06 11:57:29 +04:00
|
|
|
<input
|
2014-02-19 19:53:29 +04:00
|
|
|
type="password" id="newuserpassword"
|
2014-03-06 11:57:29 +04:00
|
|
|
placeholder="<?php p($l->t('Password'))?>"
|
2017-03-18 18:00:21 +03:00
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" />
|
2014-12-16 11:08:38 +03:00
|
|
|
<input id="newemail" type="text" style="display:none"
|
|
|
|
placeholder="<?php p($l->t('E-Mail'))?>"
|
2017-03-18 18:00:21 +03:00
|
|
|
autocomplete="off" autocapitalize="none" autocorrect="off" />
|
2016-08-23 18:22:10 +03:00
|
|
|
<div class="groups"><div class="groupsListContainer multiselect button" data-placeholder="<?php p($l->t('Groups'))?>"><span class="title groupsList"></span><span class="icon-triangle-s"></span></div></div>
|
2014-02-19 19:53:29 +04:00
|
|
|
<input type="submit" class="button" value="<?php p($l->t('Create'))?>" />
|
|
|
|
</form>
|
|
|
|
<?php if((bool)$_['recoveryAdminEnabled']): ?>
|
|
|
|
<div class="recoveryPassword">
|
|
|
|
<input id="recoveryPassword"
|
|
|
|
type="password"
|
|
|
|
placeholder="<?php p($l->t('Admin Recovery Password'))?>"
|
|
|
|
title="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"
|
|
|
|
alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2014-07-17 00:23:15 +04:00
|
|
|
</div>
|