Subversion Repositories wpShopGermany4

Rev

Rev 8161 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8161 Rev 8163
Line 48... Line 48...
48
 
48
 
49
		jQuery('input[type=password]').keyup(function(){
49
		jQuery('input[type=password]').keyup(function(){
50
 
50
 
51
			var password = jQuery(this).val();
51
			var password = jQuery(this).val();
52
			
52
			
53
			if (password.length < 6) {
53
			if (password.length < 8) {
54
				
54
				
55
				jQuery('#wpsg_pwd_length').removeClass('valid').addClass('invalid');
55
				jQuery('#wpsg_pwd_length').removeClass('valid').addClass('invalid');
56
 
56
 
57
			}else{
57
			}else{
58
 
58