about.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <head>
  3. <title>System Info</title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
  6. <link rel="stylesheet" href="../../script/semantic/semantic.min.css">
  7. <script type="text/javascript" src="../../script/jquery.min.js"></script>
  8. <script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
  9. <script type="text/javascript" src="../../script/ao_module.js"></script>
  10. </head>
  11. <body>
  12. <div class="ui container">
  13. <div class="ui segment" style="text-align:left">
  14. <h3>ArOZ Online System</h3>
  15. <p style="margin-top:-12px;">System Version: <span id="vcode"></span></p>
  16. <p style="margin-top:-12px;">System UUID: <span id="sysuuid"></span></p>
  17. <img src="../info/img/banner.png" class="ui fluid image"></img>
  18. <br>
  19. <p>Developed under ArOZ Project by tobychui<br>
  20. Special thanks to Alan Yeung, AceSaad and others who help with this project.</p>
  21. <div class="ui divider"></div>
  22. <a href="mailto:[email protected]" target="_blank"><i class="mail outline icon"></i>[email protected]</a>
  23. /
  24. <a href="http://imuslab.com"><i class="home icon"></i>http://imuslab.com</a>
  25. </div>
  26. <p>The ArOZ Online System is CopyRight tobychui. Contact us at [email protected] for questions and bug report.</p>
  27. <br>
  28. </div>
  29. </body>
  30. <script>
  31. $.get("../../system/id/requestInfo",function(data){
  32. $("#sysuuid").text(data.SystemUUID);
  33. $("#vcode").text(data.Build + " v" + data.Version);
  34. });
  35. </script>
  36. </html>