added crypting method

This commit is contained in:
Dario48true 2024-09-25 09:43:28 +02:00
parent bd5a51bccb
commit fbb9fd1886
6 changed files with 44 additions and 66 deletions

1
site/disable_form.js Normal file
View file

@ -0,0 +1 @@
document.getElementById("disable_enter").addEventListener("keydown", function(e) { if (e.key === "Enter") { e.preventDefault(); } })