nowebroot.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <h1><span class="username"></span>'s Personal Home Page</h1>
  26. <div class="ui divider"></div>
  27. <div class="ui two column stackable grid">
  28. <div class="six wide column">
  29. <img src="../../img/public/errors/welcome.png">
  30. </div>
  31. <div class="ten wide column">
  32. <h3>You are seeing this page because you have enabled home page on your account.</h3>
  33. <p>The ArozOS Home Page is a simple way to host your files using a web page so you can access it anywhere without login. </p>
  34. <p><b>However, it seems you haven't configure your web root location</b> and hence, this error occured.</p>
  35. <h3>How can I set it up correctly?</h3>
  36. <p>Login to your Web Desktop System and open System Setting → Network & Connection → Personal Page and configure the web root accordingly.</p>
  37. </div>
  38. </div>
  39. <div class="ui divider"></div>
  40. <p>ArozOS Project, CopyRight tobychui 2016 - <span class="year"></span></p>
  41. </div>
  42. <script>
  43. $(".year").text(new Date().getFullYear());
  44. var username = window.location.href.substring(0, window.location.href.length - 1).split("/").pop();
  45. $(".username").text(username);
  46. </script>
  47. </body>
  48. </html>