Password input type

main
Bob Mottram 2021-07-20 09:44:32 +01:00
parent 223ee5a5f5
commit 379473e4b1
1 changed files with 2 additions and 2 deletions

View File

@ -1612,11 +1612,11 @@ def _htmlEditProfileChangePassword(translate: {}) -> str:
' <div class="container">\n' + \
'<label class="labels">' + translate['Change Password'] + \
'</label><br>\n' + \
' <input type="text" name="password" ' + \
' <input type="password" name="password" ' + \
'value=""><br>\n' + \
'<label class="labels">' + translate['Confirm Password'] + \
'</label><br>\n' + \
' <input type="text" name="passwordconfirm" value="">\n' + \
' <input type="password" name="passwordconfirm" value="">\n' + \
' </div></details>\n'
return editProfileForm