BiryaniHubflask31 / templates /redirect_page.html
nagasurendra's picture
Create redirect_page.html
bbddc4a verified
raw
history blame
752 Bytes
<!DOCTYPE html>
<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">
// Wait for the page to load, then redirect
window.onload = function() {
// Open a new tab or window and navigate to a new URL
window.open('https://biryanihub-dev-ed.develop.my.salesforce-sites.com/', '_blank');
// Optionally, you can redirect the current tab too:
// window.location.href = 'https://www.example.com';
}
</script>
</head>
<body>
<h1>Logging out...</h1>
<p>Please wait while we log you out and redirect you.</p>
</body>
</html>