| 1234567891011121314151617 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>警告</title>
- </head>
- <body>
- <script>
- let newLink = location.href.replace('www-hk','www');
- document.write('<h2>您当前访问的页面已过期,请<a href="'+newLink+'">点击此处打开新页面</a>。需要重新登录。</h2>');
- document.write('<h2>The page has expired due to inactivity. Please <a href="'+newLink+'">CLICK HERE TO OPEN OUR NEW WEBSITE</a>.</h2>');
- </script>
- </body>
- </html>
|