mirror of https://github.com/status-im/cabot.git
Merge pull request #609 from hartwork/issue-605-prevent-http-check-auth-autofill
Prevent auto-fill of saved credentials into HTTP auth fields
This commit is contained in:
commit
9ba585dfd9
|
@ -228,6 +228,8 @@ class HttpStatusCheckForm(StatusCheckForm):
|
|||
}),
|
||||
'password': forms.PasswordInput(attrs={
|
||||
'style': 'width: 30%',
|
||||
# Prevent auto-fill with saved Cabot log-in credentials:
|
||||
'autocomplete': 'new-password',
|
||||
}),
|
||||
'text_match': forms.TextInput(attrs={
|
||||
'style': 'width: 100%',
|
||||
|
|
Loading…
Reference in New Issue