prevent firefox from autocompleting the current password in the form/fields for changing password

This commit is contained in:
Mechiel Lukkien
2024-01-05 12:15:55 +01:00
parent 9796c4539d
commit c348834ce9
8 changed files with 12 additions and 6 deletions

View File

@ -217,6 +217,7 @@ const [dom, style, attr, prop] = (function () {
max: (s) => _attr('max', s),
action: (s) => _attr('action', s),
method: (s) => _attr('method', s),
autocomplete: (s) => _attr('autocomplete', s),
};
const style = (x) => { return { _styles: x }; };
const prop = (x) => { return { _props: x }; };