From 83bc8042ce17ad7e969188563d7fc339bad8fcbf Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Wed, 11 Feb 2026 15:56:56 +0100 Subject: [PATCH] Remove console logging Signed-off-by: Pablo Zmdl --- php/public/forms.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/php/public/forms.js b/php/public/forms.js index e9e2b952..6b982b0d 100644 --- a/php/public/forms.js +++ b/php/public/forms.js @@ -70,12 +70,10 @@ function showPassword(id) { } form.onsubmit = submit; - console.info(form); } function initForms() { const forms = document.querySelectorAll('form.xhr') - console.info("Making " + forms.length + " form(s) use XHR."); for (const form of forms) { initForm(form); }