diff options
author | Dennis1993 <Dennis1993@users.noreply.github.com> | 2018-10-31 09:19:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 09:19:02 +0100 |
commit | 708658afa34612667191fe06560ec1f37b1cab43 (patch) | |
tree | 5dc91dbc3f454122d354c1b57d16116023425f43 /config | |
parent | 426641a795c41aaa1e48715c9fa2c39d2a8cb387 (diff) | |
parent | 2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110 (diff) | |
download | nextcloud-server-708658afa34612667191fe06560ec1f37b1cab43.tar.gz nextcloud-server-708658afa34612667191fe06560ec1f37b1cab43.zip |
Merge pull request #12089 from Rayn0r/master
added possibility to disable autocomplete in login form
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 25f56904dc4..902bfa6e44d 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1663,4 +1663,14 @@ $CONFIG = array( * If this is set to "false" it will not show the link. */ 'simpleSignUpLink.shown' => true, + +/** + * By default autocompletion is enabled for the login form on Nextcloud's login page. + * While this is enabled, browsers are allowed to "remember" login names and such. + * Some companies require it to be disabled to comply with their security policy. + * + * Simply set this property to "false", if you want to turn this feature off. + */ + +'login_form_autocomplete' => true, ); |