From 3aa5ebd14178483b3a17bdc60ccbdcdc184c20b8 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Wed, 19 Jul 2017 09:48:04 +0200 Subject: [PATCH] Bug 18955 - autocomplete is on in OPAC password recovery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In OPAC password recovery form autocomplete is not disabled. So when login or email is entered, it is saved in browser input history for autocomplete. This is a major issue for OPAC on computers with public access. This patch adds autocomplete off on forms. Test : - Enable system preferences OpacPasswordChange and OpacResetPassword - Go to OPAC - Be sure to not be logged in - Click on "Forgot your password?" - Enter a loggin and email and Submit => Without patch there is an autocompletion with values you entered => With patch there is no autocompletion Signed-off-by: Marc VĂ©ron --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt index 6c445b1..4f3f857 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-password-recovery.tt @@ -78,7 +78,7 @@ [% IF (!Koha.Preference('OpacResetPassword')) %]
You can't reset your password.
[% ELSIF (password_recovery) %] -
+

To reset your password, enter your login and your email address. @@ -92,7 +92,7 @@

[% ELSIF (new_password) %] -
+
The password must contain at least [% minPassLength %] characters.
-- 2.1.4