function checkToken(){ instance.get("token", { withCredentials: true}) .then(function(response) { if(location.pathname == "/") { location.href="/html/users.html"; } }) .catch(function(error){ if(location.pathname != "/"){ location.href="/"; } if(error.response.status == 406){ instance.delete("token" , {withCredentials:true}).then(function(response){ location.reload(); }); } }); } function signOut(){ document.getElementById("signout").addEventListener("click", function(){ instance.delete("token" , {withCredentials:true}).then(function(response){ if(response.status == 200) { location.href="/"; } }); }); } function closeButton(){ var btnclose = document.getElementsByClassName("btn-close"); for (var i = 0; i0){ query = location.search.split("?")[1]; var variables = query.split("&") for (var i=0; i