diff --git a/actions/admin/settings/120.system.php b/actions/admin/settings/120.system.php index 7781a474..50e580aa 100644 --- a/actions/admin/settings/120.system.php +++ b/actions/admin/settings/120.system.php @@ -257,7 +257,8 @@ return [ 'varname' => 'mail_smtp_user', 'type' => 'text', 'default' => '', - 'save_method' => 'storeSettingField' + 'save_method' => 'storeSettingField', + 'autocomplete' => 'off' ], 'system_mail_smtp_passwd' => [ 'label' => lng('serversettings.mail_smtp_passwd'), @@ -265,7 +266,8 @@ return [ 'varname' => 'mail_smtp_passwd', 'type' => 'password', 'default' => '', - 'save_method' => 'storeSettingField' + 'save_method' => 'storeSettingField', + 'autocomplete' => 'new-password' ], 'system_apply_specialsettings_default' => [ 'label' => lng('serversettings.apply_specialsettings_default'), diff --git a/lib/formfields/admin/admin/formfield.admin_add.php b/lib/formfields/admin/admin/formfield.admin_add.php index 632ba58c..b3920591 100644 --- a/lib/formfields/admin/admin/formfield.admin_add.php +++ b/lib/formfields/admin/admin/formfield.admin_add.php @@ -46,7 +46,7 @@ return [ 'label' => lng('login.password'), 'type' => 'password', 'mandatory' => true, - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'admin_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/admin/admin/formfield.admin_edit.php b/lib/formfields/admin/admin/formfield.admin_edit.php index b9ad3c0c..484b8897 100644 --- a/lib/formfields/admin/admin/formfield.admin_edit.php +++ b/lib/formfields/admin/admin/formfield.admin_edit.php @@ -52,7 +52,7 @@ return [ 'admin_password' => [ 'label' => lng('login.password') . ' (' . lng('panel.emptyfornochanges') . ')', 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'visible' => $result['adminid'] != $userinfo['userid'], 'next_to' => [ 'admin_password_suggestion' => [ diff --git a/lib/formfields/admin/customer/formfield.customer_add.php b/lib/formfields/admin/customer/formfield.customer_add.php index aca33e25..80bdb8bb 100644 --- a/lib/formfields/admin/customer/formfield.customer_add.php +++ b/lib/formfields/admin/customer/formfield.customer_add.php @@ -58,7 +58,7 @@ return [ 'new_customer_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'placeholder' => lng('admin.password_default_msg'), 'next_to' => [ 'new_customer_password_suggestion' => [ diff --git a/lib/formfields/admin/customer/formfield.customer_edit.php b/lib/formfields/admin/customer/formfield.customer_edit.php index 0c1639bf..223ba0ab 100644 --- a/lib/formfields/admin/customer/formfield.customer_edit.php +++ b/lib/formfields/admin/customer/formfield.customer_edit.php @@ -63,7 +63,7 @@ return [ 'new_customer_password' => [ 'label' => lng('login.password') . ' (' . lng('panel.emptyfornochanges') . ')', 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'new_customer_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/customer/email/formfield.emails_accountchangepasswd.php b/lib/formfields/customer/email/formfield.emails_accountchangepasswd.php index f18d69b7..6dffdd9b 100644 --- a/lib/formfields/customer/email/formfield.emails_accountchangepasswd.php +++ b/lib/formfields/customer/email/formfield.emails_accountchangepasswd.php @@ -43,7 +43,7 @@ return [ 'email_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'email_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/customer/email/formfield.emails_addaccount.php b/lib/formfields/customer/email/formfield.emails_addaccount.php index ea0be6d6..7bdfb4fd 100644 --- a/lib/formfields/customer/email/formfield.emails_addaccount.php +++ b/lib/formfields/customer/email/formfield.emails_addaccount.php @@ -43,7 +43,7 @@ return [ 'email_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'mandatory' => true, 'next_to' => [ 'email_password_suggestion' => [ diff --git a/lib/formfields/customer/extras/formfield.htpasswd_add.php b/lib/formfields/customer/extras/formfield.htpasswd_add.php index 98241c37..729aa5be 100644 --- a/lib/formfields/customer/extras/formfield.htpasswd_add.php +++ b/lib/formfields/customer/extras/formfield.htpasswd_add.php @@ -54,7 +54,7 @@ return [ 'directory_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'mandatory' => true, 'next_to' => [ 'directory_password_suggestion' => [ diff --git a/lib/formfields/customer/extras/formfield.htpasswd_edit.php b/lib/formfields/customer/extras/formfield.htpasswd_edit.php index 88a55948..13b4e986 100644 --- a/lib/formfields/customer/extras/formfield.htpasswd_edit.php +++ b/lib/formfields/customer/extras/formfield.htpasswd_edit.php @@ -49,7 +49,7 @@ return [ 'directory_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'directory_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/customer/ftp/formfield.ftp_add.php b/lib/formfields/customer/ftp/formfield.ftp_add.php index 2d7418a5..9a828896 100644 --- a/lib/formfields/customer/ftp/formfield.ftp_add.php +++ b/lib/formfields/customer/ftp/formfield.ftp_add.php @@ -58,7 +58,7 @@ return [ 'ftp_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'mandatory' => true, 'next_to' => [ 'ftp_password_suggestion' => [ diff --git a/lib/formfields/customer/ftp/formfield.ftp_edit.php b/lib/formfields/customer/ftp/formfield.ftp_edit.php index b89d9240..dc851df1 100644 --- a/lib/formfields/customer/ftp/formfield.ftp_edit.php +++ b/lib/formfields/customer/ftp/formfield.ftp_edit.php @@ -51,7 +51,7 @@ return [ 'label' => lng('login.password'), 'desc' => lng('ftp.editpassdescription'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'ftp_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/customer/mysql/formfield.mysql_add.php b/lib/formfields/customer/mysql/formfield.mysql_add.php index da0ceded..4e20cfcc 100644 --- a/lib/formfields/customer/mysql/formfield.mysql_add.php +++ b/lib/formfields/customer/mysql/formfield.mysql_add.php @@ -45,7 +45,7 @@ return [ 'mysql_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'mandatory' => true, 'next_to' => [ 'mysql_password_suggestion' => [ diff --git a/lib/formfields/customer/mysql/formfield.mysql_edit.php b/lib/formfields/customer/mysql/formfield.mysql_edit.php index 1c9d3021..3981b4a5 100644 --- a/lib/formfields/customer/mysql/formfield.mysql_edit.php +++ b/lib/formfields/customer/mysql/formfield.mysql_edit.php @@ -52,7 +52,7 @@ return [ 'mysql_password' => [ 'label' => lng('changepassword.new_password_ifnotempty'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'next_to' => [ 'mysql_password_suggestion' => [ 'next_to_prefix' => lng('customer.generated_pwd') . ':', diff --git a/lib/formfields/customer/mysql/formfield.mysql_global_user.php b/lib/formfields/customer/mysql/formfield.mysql_global_user.php index 87fcac80..2ce0522d 100644 --- a/lib/formfields/customer/mysql/formfield.mysql_global_user.php +++ b/lib/formfields/customer/mysql/formfield.mysql_global_user.php @@ -34,7 +34,7 @@ return [ 'mysql_password' => [ 'label' => lng('login.password'), 'type' => 'password', - 'autocomplete' => 'off', + 'autocomplete' => 'new-password', 'mandatory' => true, 'next_to' => [ 'mysql_password_suggestion' => [