LP#1088561: remove current password (renew password issue with TPAC)
authorSimon Hieu Mai <hieu.mai@mnsu.edu>
Wed, 19 Dec 2012 20:33:54 +0000 (14:33 -0600)
committerBen Shum <bshum@biblio.org>
Wed, 19 Dec 2012 21:20:59 +0000 (16:20 -0500)
If a user chooses to have their browser remember their password for the
catalog, it can fill in the password to the change password form page
as hidden dots. This behavior was observed specifically with Firefox.

Instead, add autocomplete="off" attribute to the form to force users to
enter existing password to change to a new password as intended.

Signed-off-by: Simon Mai <hieu.mai@mnsu.edu>
Signed-off-by: Ben Shum <bshum@biblio.org>
Open-ILS/src/templates/opac/myopac/update_password.tt2

index c87fc5d..0d3d461 100644 (file)
@@ -21,7 +21,7 @@
     </div>
 [% END %]
 
-<form method='POST' id='account-update-email'
+<form method='POST' id='account-update-email' autocomplete="off">
     <table> 
         <tr><td>[% l('Current Password') %]</td><td><input type='password' name='current_pw'/></td></tr>
         <tr><td>[% l('New Password') %]</td><td><input type='password' name='new_pw'/></td></tr>