Add rules language support and improve password validation across the app

This commit is contained in:
Jan Meinl
2026-05-17 05:57:20 +02:00
parent 68034dea7d
commit 570272a777
16 changed files with 330 additions and 77 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
async function submit(e) {
e.preventDefault();
err.style.display = "none";
if (pw1.value.length < 6) {
if (pw1.value.length < 8) {
err.textContent = t("password_too_short");
err.style.display = "block";
return;