index.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Admin Panel</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1" >
  7. <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  8. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
  10. <style>
  11. body{
  12. overflow: hidden;
  13. }
  14. .windows{
  15. width: 100%;
  16. height: calc(100% - 46px);
  17. background-color: rgb(241, 241, 241);
  18. }
  19. .frameWrapper{
  20. width: 100%;
  21. height: 100%;
  22. }
  23. .frameWrapper iframe{
  24. border: 0px solid transparent;
  25. width: 100%;
  26. height: 100%;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="mainmenu ui inverted menu" style="margin-bottom: 0 !important; border-radius: 0 !important;">
  32. <a class="item" href="/admin/index.html">
  33. <img class="ui tiny image" src="img/icon.svg">
  34. </a>
  35. <a class="active yellow selectable item" onclick="switchFrame(event, this);" xframe="fs"><i class="folder icon"></i> File Manager</a>
  36. <a class="violet selectable item" onclick="switchFrame(event, this);" xframe="search">Search</a>
  37. <a class="grey selectable item" onclick="switchFrame(event, this);" xframe="info">Info</a>
  38. <div class="right menu">
  39. <a class="grey selectable item" title="Logout" onclick="handleLogout();"><i class="ui sign-out icon"></i></a>
  40. </div>
  41. </div>
  42. <div class="windows">
  43. <div id="fs" class="frameWrapper">
  44. <iframe src="fs.html"></iframe>
  45. </div>
  46. <div id="search" class="frameWrapper" style="display:none;">
  47. <iframe src="search.html"></iframe>
  48. </div>
  49. <div id="info" class="frameWrapper" style="display:none;">
  50. <iframe src="info.html"></iframe>
  51. </div>
  52. </div>
  53. <script>
  54. $(".mainmenu .selectable.item").on("click", function(){
  55. $(".mainmenu .item.active").removeClass("active");
  56. $(this).addClass("active");
  57. });
  58. function handleLogout(){
  59. $.get("/api/auth/logout", function(data){
  60. window.location.href = "/index.html";
  61. })
  62. }
  63. function switchFrame(event, object){
  64. event.preventDefault();
  65. let targetFrameID = $(object).attr("xframe");
  66. $(".frameWrapper").hide();
  67. $("#" + targetFrameID).show();
  68. }
  69. //Check login status
  70. function initLoginCheck(){
  71. $.get("/api/auth/chk", function(data){
  72. if (data == false){
  73. window.location.href = "/login.html"
  74. }
  75. });
  76. }
  77. initLoginCheck();
  78. </script>
  79. </body>
  80. </html>