aboutsummaryrefslogtreecommitdiffhomepage
path: root/template/html/edit_user.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/html/edit_user.html')
-rw-r--r--template/html/edit_user.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/html/edit_user.html b/template/html/edit_user.html
index 06539d9..7825021 100644
--- a/template/html/edit_user.html
+++ b/template/html/edit_user.html
@@ -33,13 +33,13 @@
{{ end }}
<label for="form-username">{{ t "Username" }}</label>
- <input type="text" name="username" id="form-username" value="{{ .form.Username }}" required autofocus>
+ <input type="text" name="username" id="form-username" value="{{ .form.Username }}" autocomplete="new-password" required autofocus>
<label for="form-password">{{ t "Password" }}</label>
- <input type="password" name="password" id="form-password" value="{{ .form.Password }}">
+ <input type="password" name="password" id="form-password" value="{{ .form.Password }}" autocomplete="new-password">
<label for="form-confirmation">{{ t "Confirmation" }}</label>
- <input type="password" name="confirmation" id="form-confirmation" value="{{ .form.Confirmation }}">
+ <input type="password" name="confirmation" id="form-confirmation" value="{{ .form.Confirmation }}" autocomplete="new-password">
<label><input type="checkbox" name="is_admin" value="1" {{ if .form.IsAdmin }}checked{{ end }}> {{ t "Administrator" }}</label>