function showHideTabPanes(){viewport=window.innerWidth;viewport<768?$(".tab-pane").removeAttr("style"):($(".registerTab").css("display","block"),$(".loginTab").css("display","block"))}$(document).ready(function(){showHideTabPanes();$("#btncheckregisterallowed").click(function(){$.ajax({type:"GET",url:"/umbraco/Surface/PatientLogin/CheckLocalAuthentication",data:{username:$("#usernametxt").val(),password:$("#passwordtxt").val()},success:function(n){n===!0?$("#myModal").modal("hide"):alert("Wrong username or password")}})});$("#usernametxt").val("");$("#passwordtxt").val("");$.ajax({type:"GET",url:"/umbraco/Surface/PatientLogin/CheckLocalAuthenticationCookie",success:function(n){n===!0?$("#myModal").modal("hide"):$("#myModal").modal("show")}})});$(window).resize(function(){showHideTabPanes()})