diff options
author | silverwind <me@silverwind.io> | 2020-10-09 09:32:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 10:32:30 +0300 |
commit | 1c523e212913cdb6fc2b0709af7f4c910d1728c8 (patch) | |
tree | 8a0f236537c952f38809ed44fcf06644c02b2d66 /templates/user/auth/change_passwd_inner.tmpl | |
parent | ea69ec6f0feb357b82dc2572f88184db507e383b (diff) | |
download | gitea-1c523e212913cdb6fc2b0709af7f4c910d1728c8.tar.gz gitea-1c523e212913cdb6fc2b0709af7f4c910d1728c8.zip |
Set appropriate `autocomplete` attributes on password fields (#13078)
`new-password` prevents annoying autocompletion in some cases, thought
it's not semantically correct to use that for example on all three
fields on the user account page, so some annoyances remain.
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates/user/auth/change_passwd_inner.tmpl')
-rw-r--r-- | templates/user/auth/change_passwd_inner.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/auth/change_passwd_inner.tmpl b/templates/user/auth/change_passwd_inner.tmpl index 60d4a210ee..43818e93d2 100644 --- a/templates/user/auth/change_passwd_inner.tmpl +++ b/templates/user/auth/change_passwd_inner.tmpl @@ -9,13 +9,13 @@ {{.CsrfTokenHtml}} <div class="required inline field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}"> <label for="password">{{.i18n.Tr "password"}}</label> - <input id="password" name="password" type="password" value="{{.password}}" autocomplete="off" required> + <input id="password" name="password" type="password" value="{{.password}}" autocomplete="new-password" required> </div> <div class="required inline field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}"> <label for="retype">{{.i18n.Tr "re_type"}}</label> - <input id="retype" name="retype" type="password" autocomplete="off" required> + <input id="retype" name="retype" type="password" autocomplete="new-password" required> </div> <div class="inline field"> |