Education Interface Log in
var urlParams = window.location.href; var errorTextParam = []; errorTextParam = urlParams.split('?')[1]; errorTextParam = errorTextParam.split('&'); if(errorTextParam && errorTextParam.length > 0) { for(let i=0; i < errorTextParam.length; i++){ var errorTextArr = []; errorTextArr = errorTextParam[i].split('=') if(errorTextArr && errorTextArr.length > 1 && errorTextArr[0] == "error"){ alert(decodeURI(errorTextArr[1])) break; } } }