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'); };