diff options
author | curly <curly@infernal.garden> | 2024-07-18 11:09:47 -0600 |
---|---|---|
committer | curly <curly@infernal.garden> | 2024-07-18 11:09:47 -0600 |
commit | bb7cff0016a1bb95bd987b69b586c505418c1aeb (patch) | |
tree | d08b45b7ab8bca72abacb99487ea208074635e31 /src/main.js | |
parent | 9feb35fa48c65ad404cd414bb4b9cda76a86b024 (diff) | |
download | poko_web-bb7cff0016a1bb95bd987b69b586c505418c1aeb.tar.gz poko_web-bb7cff0016a1bb95bd987b69b586c505418c1aeb.tar.bz2 poko_web-bb7cff0016a1bb95bd987b69b586c505418c1aeb.zip |
move delete to update info
Diffstat (limited to 'src/main.js')
-rw-r--r-- | src/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js index c7f42bc..5dc8244 100644 --- a/src/main.js +++ b/src/main.js @@ -430,7 +430,7 @@ async function delete_form() { const id = get_id(); const session = get_session(); const is_sure = document.getElementById("is_sure").value; - const password = document.getElementById("password").value; + const password = document.getElementById("del_password").value; if (is_sure == "YES") { const url = server + "/user/delete" |