diff options
Diffstat (limited to 'ogcp/templates/auth')
-rw-r--r-- | ogcp/templates/auth/edit_user.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/auth/edit_user.html b/ogcp/templates/auth/edit_user.html index b9e748d..3b10508 100644 --- a/ogcp/templates/auth/edit_user.html +++ b/ogcp/templates/auth/edit_user.html @@ -19,12 +19,12 @@ <div class="form-group"> {{ form.pwd.label(class_='form-label') }} - {{ form.pwd(class_='form-control') }} + <input type="password" name="pwd" class="form-control" placeholder="{{ _('Leave blank if not changing') }}"> </div> <div class="form-group"> {{ form.pwd_confirm.label(class_='form-label') }} - {{ form.pwd_confirm(class_='form-control') }} + <input type="password" name="pwd_confirm" class="form-control" placeholder="{{ _('Leave blank if not changing') }}"> </div> <div class="form-group form-check"> |