From af40f0ba6126fbf55296e054251553589ee31445 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Thu, 27 Aug 2026 15:11:39 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8=20?= =?UTF-8?q?=EA=B8=B8=EC=9D=B4=20=EA=B2=80=EC=A6=9D=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?-=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EB=8B=A8=EC=88=9C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/templates/views/apps/login/login.html | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/main/resources/templates/views/apps/login/login.html b/src/main/resources/templates/views/apps/login/login.html index 6a1dff2..6e091e7 100644 --- a/src/main/resources/templates/views/apps/login/login.html +++ b/src/main/resources/templates/views/apps/login/login.html @@ -232,14 +232,9 @@ $('#loginLoading').removeClass('active'); customPopups.showAlert('입력 정보 확인'); } else { - if (form.password.value.length < 8) { - $('#loginLoading').removeClass('active'); - customPopups.showAlert('[[#{login.passLengthShort}]]'); - } else { - refreshCsrfAndThen(form, function () { - form.submit(); - }); - } + refreshCsrfAndThen(form, function () { + form.submit(); + }); } form.classList.add('was-validated'); };