mirror of
https://github.com/nextcloud/server.git
synced 2026-05-26 19:32:28 -04:00
Merge pull request #6350 from owncloud/ldap_dont_autofill
LDAP: the browser shall not autofill userdn and password, usually login ...
This commit is contained in:
commit
02c9bb76ff
1 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@
|
|||
<div class="tablerow">
|
||||
<input type="text" id="ldap_dn" name="ldap_dn"
|
||||
class="tablecell lwautosave"
|
||||
placeholder="<?php p($l->t('User DN'));?>"
|
||||
placeholder="<?php p($l->t('User DN'));?>" autocomplete="off"
|
||||
title="<?php p($l->t('The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.'));?>"
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
<div class="tablerow">
|
||||
<input type="password" id="ldap_agent_password"
|
||||
class="tablecell lwautosave" name="ldap_agent_password"
|
||||
placeholder="<?php p($l->t('Password'));?>"
|
||||
placeholder="<?php p($l->t('Password'));?>" autocomplete="off"
|
||||
title="<?php p($l->t('For anonymous access, leave DN and Password empty.'));?>"
|
||||
/>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue