<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Logging Out...</title> | |
<script type="text/javascript"> | |
// Get the table number from Flask (if needed) | |
var tableNumber = "{{ table_number }}"; | |
window.onload = function() { | |
// Construct the logout redirect URL with table number (optional) | |
let redirectURL = "/login"; // Redirect to login page | |
if (tableNumber) { | |
redirectURL += "?table=" + encodeURIComponent(tableNumber); | |
} | |
// Optionally, redirect the current tab to the login page | |
window.location.href = redirectURL; | |
}; | |
</script> | |
</head> | |
<body> | |
<h1>Logging out...</h1> | |
<p>Please wait while we log you out and redirect you to the login page.</p> | |
</body> | |
</html> | |