| 123456789101112131415161718192021222324252627282930 |
- <html>
- <head>
- <title>Logout</title>
- <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
- </script>
- </head>
- <body>
- <button onclick="handleLogout()">Click to Logout!!!!!!!!</button>
- <script>
- function handleLogout() {
- var username = window.location.hash.substring(1);
- alert(username+" is logging out......")
- $.ajax({
- url: "/logout",
- data: {username: username},
- success: function(value){
- var response = JSON.parse(value)
- if (response.LoggedOut == true){
- alert(username+" logged out successfully");
- window.location.href = '/login.html';
- }else{
- alert("Error: logged out failed!");
- }
- }
- });
- }
- </script>
- </body>
- </html>`
|