You have been blacklisted because of multiple failed login attempts. You can try to login again in 1 hour. Please use valid credentials. Contact service provider if credentials are lost and password reset is not possible.
';function _login(){$.ajax("login.php",{type:"post",dataType:"json",data:{act:"login",Submit:"1",username:$('#username').val(),password:$('#password').val()},complete:function(){$("#loginform").spin(false);$('#loginform').unblock({ message: null });},beforeSend:function(){$('').block({ message: null });$("#loginform").spin("small"); },error:function(){$("#msgpanel").html(error_login_failed);},success:function(json){if(json){if(json.success){if(json.status=="4"){window.location='login2fa.php';}else if(json.status=="1"){window.location='home.php';}else if(json.status=="2"){$("#msgpanel").html(error_login_blacklisted);}else if(json.status=="3"){$("#msgpanel").html(error_login_failed);}else{$("#msgpanel").html(error_login_failed);}}else{$("#msgpanel").html(error_login_failed);}}else{$("#msgpanel").html(error_login_failed);}}});}