Browse Source

fix: use correct id value for label (#4541)

Signed-off-by: Logan <31484824+loganripplinger@users.noreply.github.com>
pull/4543/head
Logan 4 weeks ago committed by GitHub
parent
commit
d90827cc30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      web/templates/password.html

2
web/templates/password.html

@ -5,7 +5,7 @@
<form method="post" action="{{ .PostURL }}">
<div class="theme-form-row">
<div class="theme-form-label">
<label for="userid">{{ .UsernamePrompt }}</label>
<label for="login">{{ .UsernamePrompt }}</label>
</div>
<input tabindex="1" required id="login" name="login" type="text" class="theme-form-input" placeholder="{{ .UsernamePrompt | lower }}" {{ if .Username }} value="{{ .Username }}" {{ else }} autofocus {{ end }}/>
</div>

Loading…
Cancel
Save