commit cfb79b5: [Minor] Fix password field border radius

moisseev moiseev at mezonplus.ru
Thu Jun 1 15:14:04 UTC 2023


Author: moisseev
Date: 2023-06-01 14:26:27 +0300
URL: https://github.com/rspamd/rspamd/commit/cfb79b5e7364d1ab629176e1c46819cd39ce0d1e

[Minor] Fix password field border radius

---
 interface/index.html | 10 +++++-----
 1 file 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"


More information about the Commits mailing list