index.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 icon item" onclick="switchFrame(event, this);" xframe="fs"><i class="folder icon"></i></a>
  36. <a class="violet selectable icon item" onclick="switchFrame(event, this);" xframe="search"><i class="ui search icon"></i></a>
  37. <a class="blue selectable icon item" onclick="switchFrame(event, this);" xframe="users"><i class="ui user icon"></i></a>
  38. <a class="grey selectable icon item" onclick="switchFrame(event, this);" xframe="info"><i class="ui info circle icon"></i></a>
  39. <div class="right menu">
  40. <a class="grey selectable item" title="Logout" onclick="handleLogout();"><i class="ui sign-out icon"></i></a>
  41. </div>
  42. </div>
  43. <div class="windows">
  44. <div id="fs" class="frameWrapper">
  45. <iframe src="fs.html"></iframe>
  46. </div>
  47. <div id="search" class="frameWrapper" style="display:none;">
  48. <iframe src="search.html"></iframe>
  49. </div>
  50. <div id="users" class="frameWrapper" style="display:none;">
  51. <iframe src="users.html"></iframe>
  52. </div>
  53. <div id="info" class="frameWrapper" style="display:none;">
  54. <iframe src="info.html"></iframe>
  55. </div>
  56. </div>
  57. <script>
  58. $(".mainmenu .selectable.item").on("click", function(){
  59. $(".mainmenu .item.active").removeClass("active");
  60. $(this).addClass("active");
  61. });
  62. function handleLogout(){
  63. $.get("/api/auth/logout", function(data){
  64. window.location.href = "/index.html";
  65. })
  66. }
  67. function switchFrame(event, object){
  68. event.preventDefault();
  69. let targetFrameID = $(object).attr("xframe");
  70. $(".frameWrapper").hide();
  71. $("#" + targetFrameID).show();
  72. }
  73. //Check login status
  74. function initLoginCheck(){
  75. $.get("/api/auth/chk", function(data){
  76. if (data == false){
  77. window.location.href = "/login.html"
  78. }
  79. });
  80. }
  81. initLoginCheck();
  82. </script>
  83. </body>
  84. </html>