Browse Source

Merge pull request #4014 from moisseev/webui

[WebUI] Fix saving credentials in password manager
tags/3.2
Vsevolod Stakhov 2 years ago
parent
commit
c1cce0dd49
No account linked to committer's email address
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      interface/index.html

+ 5
- 0
interface/index.html View File

@@ -589,6 +589,11 @@
<form id="connectForm">
<div class="form-group">
<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"

Loading…
Cancel
Save