mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Made form check more restrictive.
This commit is contained in:
parent
0815c4ff85
commit
fb03f0db43
@ -28,7 +28,7 @@ ComunicWeb.common.formChecker = {
|
||||
|
||||
//TextInput
|
||||
if(inputType == "text"){
|
||||
inputOK = (input.value == "" ? false:true);
|
||||
inputOK = (input.value.length < 3 ? false:true);
|
||||
}
|
||||
|
||||
//MailInput
|
||||
@ -38,7 +38,7 @@ ComunicWeb.common.formChecker = {
|
||||
|
||||
//Password input
|
||||
else if(inputType == "password"){
|
||||
inputOK = (input.value == "" ? false:true);
|
||||
inputOK = (input.value.length < 3 ? false:true);
|
||||
}
|
||||
|
||||
//Unsupported input type
|
||||
|
Loading…
Reference in New Issue
Block a user