index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="apple-mobile-web-app-capable" content="yes" />
  5. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  6. <meta charset="UTF-8">
  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. <title>Management Gateway</title>
  13. <style>
  14. body{
  15. background-color:white;
  16. overflow: hidden;
  17. padding: 0px !important;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="ui inverted blue attached menu">
  23. <a class="item" onclick="window.location.reload();">
  24. <img src="img/white_icon.png">
  25. </a>
  26. <div class="item" style="margin-left: -12px; border: 1px solid transparent !important; ">
  27. <span style="font-weight: bold; font-size: 150%; margin-right: 12px; margin-top:-16px;">arozos</span><span style="margin-top:18px; margin-left: -60px; font-size: 80%;">Management Gateway</span>
  28. </div>
  29. <div class="right menu">
  30. <a class="item nondesktop" href="../SystemAO/boot/interface_selector.html">
  31. <i class="exchange icon"></i> Switch Services
  32. </a>
  33. <a class="item nondesktop" onclick="logout();">
  34. <i class="logout icon"></i> Logout
  35. </a>
  36. </div>
  37. </div>
  38. <iframe src="../SystemAO/system_setting/" id="mainframe" style="width:100%; height: calc(100% - 53px); border: 1px solid white !important;"></iframe>
  39. <script>
  40. if (ao_module_virtualDesktop){
  41. $(".nondesktop").hide();
  42. }
  43. function logout() {
  44. if (confirm("Exiting Session. Confirm?")){
  45. $.get("../system/auth/logout", function() {
  46. window.location.href = "/";
  47. });
  48. }
  49. }
  50. </script>
  51. </body>
  52. </html>