part.createuser.php 1.3 KB

12345678910111213141516171819202122232425
  1. <div id="controls">
  2. <form id="newuser" autocomplete="off">
  3. <input id="newusername" type="text"
  4. placeholder="<?php p($l->t('Username'))?>"
  5. autocomplete="off" autocapitalize="off" autocorrect="off" />
  6. <input
  7. type="password" id="newuserpassword"
  8. placeholder="<?php p($l->t('Password'))?>"
  9. autocomplete="off" autocapitalize="off" autocorrect="off" />
  10. <input id="newemail" type="text" style="display:none"
  11. placeholder="<?php p($l->t('E-Mail'))?>"
  12. autocomplete="off" autocapitalize="off" autocorrect="off" />
  13. <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>
  14. <input type="submit" class="button" value="<?php p($l->t('Create'))?>" />
  15. </form>
  16. <?php if((bool)$_['recoveryAdminEnabled']): ?>
  17. <div class="recoveryPassword">
  18. <input id="recoveryPassword"
  19. type="password"
  20. placeholder="<?php p($l->t('Admin Recovery Password'))?>"
  21. title="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"
  22. alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/>
  23. </div>
  24. <?php endif; ?>
  25. </div>