4 lines
148 B
JavaScript
4 lines
148 B
JavaScript
|
function Logout() {
|
||
|
document.cookie = 'gourlsh_auth=; Max-Age=-1; path=/; domain=' + location.hostname;
|
||
|
document.location = "/admin/login"
|
||
|
}
|