Data Security in Record Retrieval: Protecting Patient Privacy
Discover the importance of data security in record retrieval for safeguarding patient privacy. Stay ahead with effective protection strategies....
Discover the importance of data security in record retrieval for safeguarding patient privacy. Stay ahead with effective protection strategies....
Privacy Policy
function preValidate() {
var url="/portal/login.action";
var login = document.getElementById("name").value;
var password = document.getElementById("password").value;
var preValidateUser = "true";
var data = {"login": login,
"password":password,
"preValidateUser": preValidateUser};
jQuery.post(url, data, function(response) {
if(response == "SUCCESS") {
document.getElementById("preValidateUser").value="login";
document.getElementById("login").submit();
}
else {
console.log(response);
document.getElementById("errorList").style.display="";
document.getElementById("errorval").innerHTML=response;
return false;
}
});
return false;
}