File size: 752 Bytes
bbddc4a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


<!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>