mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
user management: remove autocompletion of user/password fields, fix #8464
This commit is contained in:
parent
66d00cf782
commit
57cc51d21d
1 changed files with 4 additions and 2 deletions
|
|
@ -1,10 +1,12 @@
|
|||
<div id="user-controls">
|
||||
<form id="newuser" autocomplete="off">
|
||||
<input id="newusername" type="text" placeholder="<?php p($l->t('Login Name'))?>" />
|
||||
<input id="newusername" type="text"
|
||||
placeholder="<?php p($l->t('Login Name'))?>"
|
||||
autocomplete="off" autocapitalize="off" autocorrect="off" />
|
||||
<input
|
||||
type="password" id="newuserpassword"
|
||||
placeholder="<?php p($l->t('Password'))?>"
|
||||
/>
|
||||
autocomplete="off" autocapitalize="off" autocorrect="off" />
|
||||
<select
|
||||
class="groupsselect" id="newusergroups" data-placeholder="groups"
|
||||
title="<?php p($l->t('Groups'))?>" multiple="multiple">
|
||||
|
|
|
|||
Loading…
Reference in a new issue