Spaces:
Running
Running
Create redirect_page.html
Browse files- templates/redirect_page.html +24 -0
templates/redirect_page.html
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
<!DOCTYPE html>
|
4 |
+
<html lang="en">
|
5 |
+
<head>
|
6 |
+
<meta charset="UTF-8">
|
7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
8 |
+
<title>Logging Out...</title>
|
9 |
+
<script type="text/javascript">
|
10 |
+
// Wait for the page to load, then redirect
|
11 |
+
window.onload = function() {
|
12 |
+
// Open a new tab or window and navigate to a new URL
|
13 |
+
window.open('https://biryanihub-dev-ed.develop.my.salesforce-sites.com/', '_blank');
|
14 |
+
// Optionally, you can redirect the current tab too:
|
15 |
+
// window.location.href = 'https://www.example.com';
|
16 |
+
|
17 |
+
}
|
18 |
+
</script>
|
19 |
+
</head>
|
20 |
+
<body>
|
21 |
+
<h1>Logging out...</h1>
|
22 |
+
<p>Please wait while we log you out and redirect you.</p>
|
23 |
+
</body>
|
24 |
+
</html>
|