25 lines
585 B
HTML
25 lines
585 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
<title>BookSystem 登出</title>
|
|
{{Header}}
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
正在退出登录...
|
|
</div>
|
|
|
|
<script>
|
|
/// Check Login
|
|
$.post("/cgi-bin/booksys/doLogout",{},function(data){
|
|
console.log("Logout Ajax Success");
|
|
location.href="login.html";
|
|
},"json").fail(function(err){
|
|
console.log("Logout Ajax Failed. err:",err);
|
|
location.href="login.html";
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html> |