covas-bo/web/js/library.js

14 lines
290 B
JavaScript
Raw Normal View History

2022-07-25 20:35:54 +02:00
function checkToken(){
instance.get("token", { withCredentials: true})
.then(function(response) {
if(location.href.pathname == "/")
{
location.href="/html/home.html";
}
})
2022-07-25 20:35:54 +02:00
.catch(function(error){
location.href="/";
});
}