mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19: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
|
//TextInput
|
||||||
if(inputType == "text"){
|
if(inputType == "text"){
|
||||||
inputOK = (input.value == "" ? false:true);
|
inputOK = (input.value.length < 3 ? false:true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//MailInput
|
//MailInput
|
||||||
@ -38,7 +38,7 @@ ComunicWeb.common.formChecker = {
|
|||||||
|
|
||||||
//Password input
|
//Password input
|
||||||
else if(inputType == "password"){
|
else if(inputType == "password"){
|
||||||
inputOK = (input.value == "" ? false:true);
|
inputOK = (input.value.length < 3 ? false:true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Unsupported input type
|
//Unsupported input type
|
||||||
|
Loading…
Reference in New Issue
Block a user