index_legacy.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- Meta headers for mobile devices-->
  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 charset="UTF-8">
  8. <meta name="theme-color" content="#4b75ff">
  9. <link rel="icon" href="favicon.png">
  10. <!-- CSS and JavaScript, access to scripe folder is not blocked for non logged in users-->
  11. <link rel="stylesheet" href="../script/semantic/semantic.min.css">
  12. <script src="../script/jquery.min.js"></script>
  13. <script src="../script/semantic/semantic.min.js"></script>
  14. <title>Home Page</title>
  15. <style>
  16. body{
  17. background-color:white;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <!-- Main website content goes here-->
  23. <br><br>
  24. <div class="ui container">
  25. <a class="ui black right floated button" href="../login.system"><i class="key icon"></i>Login</a>
  26. <h1>My Home</h1>
  27. <div class="ui divider"></div>
  28. <div class="ui two column stackable grid">
  29. <div class="six wide column">
  30. <img src="../img/public/errors/welcome.png">
  31. </div>
  32. <div class="ten wide column">
  33. <h3>You are seeing this page instead of the login page because you have enabled home page mode</h3>
  34. <p>The ArozOS Home Page is a good way to show something simple for your organization or company when hosting on the cloud or a DIY NAS. </p>
  35. <p>To edit this page, take a look at ./web/www/index.html</p>
  36. <h3>How can I turn it this off?</h3>
  37. <p>Remove the -enable_homepage flag from your startup script and restart. All users that are not logged in will be redirected to login page instead.</p>
  38. </div>
  39. </div>
  40. <div class="ui divider"></div>
  41. <p>ArozOS Project, CopyRight tobychui 2016 - <span class="year"></span></p>
  42. </div>
  43. <script>
  44. $(".year").text(new Date().getFullYear());
  45. </script>
  46. </body>
  47. </html>