summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-14 10:28:03 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-14 15:26:09 +0200
commita90f4207bd2288eb760e3a36c44dca2a4a0e7cb8 (patch)
tree73376e994e85808100c374ea21ee8ae31ccfefd0
parentc0440eba51b2ee0a4fe394dfbe54664b47a5b0b6 (diff)
templates: remove dead code from edit_user.html
Remove the <script> block as the function digestUserFormPassword no longer exists.
-rw-r--r--ogcp/templates/auth/edit_user.html8
1 files changed, 0 insertions, 8 deletions
diff --git a/ogcp/templates/auth/edit_user.html b/ogcp/templates/auth/edit_user.html
index 9e1b2b9..51437c9 100644
--- a/ogcp/templates/auth/edit_user.html
+++ b/ogcp/templates/auth/edit_user.html
@@ -15,12 +15,4 @@
button_map={'submit_btn':'primary'},
id='user-form') }}
-<script>
- document.addEventListener('readystatechange', () => {
- if (document.readyState === 'complete') {
- digestUserFormPassword()
- }
- });
-</script>
-
{% endblock %}