diff options
Diffstat (limited to 'ogcp/templates/auth')
-rw-r--r-- | ogcp/templates/auth/add_user.html | 11 | ||||
-rw-r--r-- | ogcp/templates/auth/login.html | 11 |
2 files changed, 2 insertions, 20 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 %} diff --git a/ogcp/templates/auth/login.html b/ogcp/templates/auth/login.html index 2b6cce9..20f6f8c 100644 --- a/ogcp/templates/auth/login.html +++ b/ogcp/templates/auth/login.html @@ -15,8 +15,7 @@ {{ wtf.quick_form(form, method='post', form_type='basic', - button_map={'submit_btn':'primary'}, - id='login-form') }} + button_map={'submit_btn':'primary'}) }} </div> <!-- /.login-card-body --> </div> @@ -24,12 +23,4 @@ <!-- /.login-box --> </div> -<script> - document.addEventListener('readystatechange', () => { - if (document.readyState === 'complete') { - digestLoginPassword() - } - }); -</script> - {% endblock %} |