diff options
author | moisseev <moiseev@mezonplus.ru> | 2023-06-01 14:26:27 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2023-06-01 14:26:27 +0300 |
commit | cfb79b5e7364d1ab629176e1c46819cd39ce0d1e (patch) | |
tree | 17448e9a083a9b7752e7b9d71d9652829e7b6bb7 /interface | |
parent | 26963536bb4de8c7032834c5608e3bf08d44a515 (diff) | |
download | rspamd-cfb79b5e7364d1ab629176e1c46819cd39ce0d1e.tar.gz rspamd-cfb79b5e7364d1ab629176e1c46819cd39ce0d1e.zip |
[Minor] Fix password field border radius
Diffstat (limited to 'interface')
-rw-r--r-- | interface/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/interface/index.html b/interface/index.html index 82dc8a898..74d88fef9 100644 --- a/interface/index.html +++ b/interface/index.html @@ -700,12 +700,12 @@ </div> <div class="modal-body" id="connectBody"> <form id="connectForm"> + <!-- In recent browser versions username is required to save credentials in a password manager. + Browser detects passwords by form.elements[n].type == "password" and then detects + the username field by searching backwards through form elements for the text field + immediately before the password fields. --> + <input value="Rspamd controller password" style="display: none;"/> <div class="input-group"> - <!-- In recent browser versions username is required to save credentials in a password manager. - Browser detects passwords by form.elements[n].type == "password" and then detects - the username field by searching backwards through form elements for the text field - immediately before the password fields. --> - <input value="Rspamd controller password" style="display: none;"/> <input class="form-control" type="password" id="connectPassword" |