Kent
Active member
Remembering passwords in the admin control panel causes them to be stored in plaintext on the computer.
HTML5 has a new attribute for the input element called autocomplete, which tells the browser not to remember the entered value, and not to bring up previously remembered values, though it won't forget those.
Support for this may not be relied on, so a Javascript solution could be used to prevent the password form being stored in plaintext by the browser.
The field could also be changed to a password type with a confirmation, which is less convenient.
The Admin CP password could have a checkbox that enforces the change to be temporary, so when a user logs in they are required to change the password. Maybe this belongs in another suggestion...
HTML5 has a new attribute for the input element called autocomplete, which tells the browser not to remember the entered value, and not to bring up previously remembered values, though it won't forget those.
Support for this may not be relied on, so a Javascript solution could be used to prevent the password form being stored in plaintext by the browser.
The field could also be changed to a password type with a confirmation, which is less convenient.
The Admin CP password could have a checkbox that enforces the change to be temporary, so when a user logs in they are required to change the password. Maybe this belongs in another suggestion...
Upvote
0