Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDennis1993 <Dennis1993@users.noreply.github.com>2018-10-31 11:19:02 +0300
committerGitHub <noreply@github.com>2018-10-31 11:19:02 +0300
commit708658afa34612667191fe06560ec1f37b1cab43 (patch)
tree5dc91dbc3f454122d354c1b57d16116023425f43 /config
parent426641a795c41aaa1e48715c9fa2c39d2a8cb387 (diff)
parent2a9b56f77bf4622b4dbc8e954fcfc2a3226d3110 (diff)
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.php10
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,
);