Do not check password minimal length

This commit is contained in:
Sen Manho 2022-05-18 23:05:52 +09:00
parent 18d958858b
commit 7a0d14f23d
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ else
{
messageShow($prompt_template, 'Username has incorrect format ... Please try again');
}
elseif (strlen($_POST['password']) > 64 || strlen($_POST['password']) <= 7)
elseif (strlen($_POST['password']) > 64)
{
messageShow($prompt_template, 'Password has incorrect format ... Please try again');
}