1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-27 17:28:38 +00:00

Add autocomplete="username" to HTML forms

This commit is contained in:
Frédéric Guillot 2020-12-23 10:29:51 -08:00
parent d3cfa6396d
commit 9a4b045bdc
5 changed files with 14 additions and 14 deletions

View file

@ -14,7 +14,7 @@
{{ end }}
<label for="form-username">{{ t "form.user.label.username" }}</label>
<input type="text" name="username" id="form-username" value="{{ .form.Username }}" autocomplete="new-password" required autofocus>
<input type="text" name="username" id="form-username" value="{{ .form.Username }}" autocomplete="username" required autofocus>
<label for="form-password">{{ t "form.user.label.password" }}</label>
<input type="password" name="password" id="form-password" value="{{ .form.Password }}" autocomplete="new-password">