mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-03 19:54:14 +00:00 
			
		
		
		
	Made form check more restrictive.
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user