index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>Web Root</title>
  15. <style>
  16. body{
  17. background-color:white;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="ui container" id="particles-js">
  23. <br><br>
  24. <a class="ui basic right floated button" href="../"><i class="home icon"></i>Back</a>
  25. <h1>Web Root Document</h1>
  26. <div class="ui divider"></div>
  27. This is the root document of the home page service for this ArozOS Host.<br>
  28. To browse a user's homepage, enter the username as subpath for the URL (i.e. www/username)<br><br>
  29. To shutdown the homepage feature, set -enable_homepage flag to false from your startup script and restart. <br>
  30. All users that are not logged in will be redirected to login page instead.
  31. <div class="ui divider"></div>
  32. <p>To change this file, edit web/SystemAO/www/index.html<br>
  33. ArozOS Project, CopyRight tobychui 2016 - <span class="year"></span></p>
  34. </div>
  35. <script>
  36. $(".year").text(new Date().getFullYear());
  37. </script>
  38. </body>
  39. </html>