Extra submit button on edit profile screen

main
Bob Mottram 2021-05-30 15:19:26 +01:00
parent 4d293c30c0
commit 24bf38d104
1 changed files with 9 additions and 0 deletions

View File

@ -1983,6 +1983,15 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
'name="deactivateThisAccount"> ' + \
translate['Deactivate this account'] + '<br>\n'
editProfileForm += ' </div></details>\n'
editProfileForm += ' <div class="container">\n'
editProfileForm += \
' <center>\n' + \
' <input type="submit" name="submitProfile" value="' + \
translate['Submit'] + '">\n' + \
' </center>\n'
editProfileForm += ' </div>\n'
editProfileForm += ' </div>\n'
editProfileForm += '</form>\n'
editProfileForm += htmlFooter()