notfound.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  7. <meta name="theme-color" content="#4b75ff">
  8. <link rel="stylesheet" href="../script/semantic/semantic.min.css">
  9. <script src="../script/jquery.min.js"></script>
  10. <script src="../script/ao_module.js"></script>
  11. <script src="../script/semantic/semantic.min.js"></script>
  12. <link rel="manifest" crossorigin="use-credentials" href="manifest.json">
  13. <title>Not Found</title>
  14. <style>
  15. </style>
  16. </head>
  17. <body>
  18. <br>
  19. <div class="ui container">
  20. <div class="main">
  21. <h1><i class="remove icon"></i>Website Not Found</h1>
  22. <p>Unable to connect to <span id="targeturl"></span> </p>
  23. <div class="ui divider"></div>
  24. <h3>The URL you are requesting does not exists or not responding</h3>
  25. <p>We cannot request any header from the URL endpoint given. Please try again later or return to <a style="cursor: pointer;" onclick="parent.loadWebsite('about:blank');">home page</a>.</p>
  26. <img class="ui tiny image" style="cursor: pointer;" onclick="parent.loadWebsite('arozos.com');" src="img/logo.png">
  27. </div>
  28. </div>
  29. <script>
  30. if (window.location.hash.length > 1){
  31. $("#targeturl").text(window.location.hash.substr(1));
  32. }
  33. </script>
  34. </body>
  35. </html>