Skip to content

Commit 17002b5

Browse files
committed
UI - Settings - Dont let 'password' field autocomplete (chrome)
1 parent c4b890f commit 17002b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

changedetectionio/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ class globalSettingsApplicationForm(commonSettingsForm):
10051005
render_kw={"placeholder": "0.1", "style": "width: 8em;"}
10061006
)
10071007

1008-
password = SaltyPasswordField(_l('Password'))
1008+
password = SaltyPasswordField(_l('Password'), render_kw={"autocomplete": "new-password"})
10091009
pager_size = IntegerField(_l('Pager size'),
10101010
render_kw={"style": "width: 5em;"},
10111011
validators=[validators.NumberRange(min=0,

0 commit comments

Comments
 (0)