diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2018-09-13 17:34:36 +0100 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-09-13 12:34:36 -0400 |
commit | 2a6d3ba058ef855340ea0092a0e06781d067ad74 (patch) | |
tree | 3f9da2ea007d5ccc8359f1497d296bf8a1f5e9c3 /templates | |
parent | f98040ad5007a3f1f8a80d2ec82f0333b4c684b7 (diff) | |
download | gitea-2a6d3ba058ef855340ea0092a0e06781d067ad74.tar.gz gitea-2a6d3ba058ef855340ea0092a0e06781d067ad74.zip |
Allow admin toggle forcing a password change for newly created users (#4563)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin/user/new.tmpl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/admin/user/new.tmpl b/templates/admin/user/new.tmpl index 14e1d74292..b9e326e734 100644 --- a/templates/admin/user/new.tmpl +++ b/templates/admin/user/new.tmpl @@ -42,6 +42,13 @@ <input id="password" name="password" type="password" value="{{.password}}" {{if eq .login_type "0-0"}}required{{end}}> </div> + <div class="inline field"> + <div class="ui checkbox"> + <label><strong>{{.i18n.Tr "auth.allow_password_change" }}</strong></label> + <input name="must_change_password" type="checkbox" checked> + </div> + </div> + <!-- Send register notify e-mail --> {{if .CanSendEmail}} <div class="inline field"> |