<!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);
});
</script>
</body>
</html>