Index: openacs-4/packages/acs-subsite/lib/login.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/lib/login.tcl,v diff -u -N -r1.41 -r1.41.2.1 --- openacs-4/packages/acs-subsite/lib/login.tcl 25 Nov 2018 23:18:59 -0000 1.41 +++ openacs-4/packages/acs-subsite/lib/login.tcl 23 Feb 2019 13:02:06 -0000 1.41.2.1 @@ -120,7 +120,7 @@ ad_form -extend -name login \ -form [list [list email:text($username_widget),nospell \ [list label "[_ acs-subsite.Email]"] \ - {html {style "width: 150px"}}]] + {html {style "width: 150px" autocomplete "email"}}]] set user_id_widget_name email if { $email ne "" } { set focus "password" @@ -140,7 +140,7 @@ ad_form -extend -name login \ -form [list [list username:text($username_widget),nospell \ [list label "[_ acs-subsite.Username]"] \ - {html {style "width: 150px"}}]] + {html {style "width: 150px" autocomplete "username"} }]] set user_id_widget_name username if { $username ne "" } { set focus "password" @@ -153,7 +153,7 @@ ad_form -extend -name login -form { {password:text(password) {label "[_ acs-subsite.Password]"} - {html {style "width: 150px"}} + {html {style "width: 150px" autocomplete "current-password"}} } }