diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-06-28 12:31:59 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-06-30 09:26:18 +0200 |
commit | 61bd6bc4bac0cb930304b6fd7dfadd24e5318914 (patch) | |
tree | 88fdbbafba634d2052a36a4fe260b11864f378af /ogcp/templates/auth/add_user.html | |
parent | 06bcbe40a3caf76df062cbb883a0ac9e5fd2c723 (diff) |
Move password hashing to the backend
This patch moves login password hashing from the frontend/javascript to
the backend/flask.
This patch moves password hashing of login and user management forms.
Related commits:
* c7b0024 ("Add password hashing")
* 661254b ("Add 'Add user' to Users section")
Diffstat (limited to 'ogcp/templates/auth/add_user.html')
-rw-r--r-- | ogcp/templates/auth/add_user.html | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/ogcp/templates/auth/add_user.html b/ogcp/templates/auth/add_user.html index af44caa..91866fb 100644 --- a/ogcp/templates/auth/add_user.html +++ b/ogcp/templates/auth/add_user.html @@ -12,15 +12,6 @@ {{ wtf.quick_form(form, action=url_for('user_add_post'), method='post', - button_map={'submit_btn':'primary'}, - id='user-form') }} - -<script> - document.addEventListener('readystatechange', () => { - if (document.readyState === 'complete') { - digestUserFormPassword() - } - }); -</script> + button_map={'submit_btn':'primary'}) }} {% endblock %} |