|
@@ -1,39 +1,44 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<head>
|
|
|
- <title>System Info</title>
|
|
|
- <meta charset="UTF-8">
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
|
|
|
- <link rel="stylesheet" href="../../script/semantic/semantic.min.css">
|
|
|
- <script type="text/javascript" src="../../script/jquery.min.js"></script>
|
|
|
- <script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
|
|
|
- <script type="text/javascript" src="../../script/ao_module.js"></script>
|
|
|
-</head>
|
|
|
-
|
|
|
-<body>
|
|
|
- <div class="ui container">
|
|
|
- <div class="ui segment" style="text-align:left">
|
|
|
- <h3>ArOZ Online System</h3>
|
|
|
- <p style="margin-top:-12px;">System Version: <span id="vcode"></span></p>
|
|
|
- <p style="margin-top:-12px;">System UUID: <span id="sysuuid"></span></p>
|
|
|
- <img src="../info/img/banner.png" class="ui fluid image"></img>
|
|
|
- <br>
|
|
|
- <p>Developed under ArOZ Project by tobychui<br>
|
|
|
- Special thanks to Alan Yeung, AceSaad and others who help with this project.</p>
|
|
|
- <div class="ui divider"></div>
|
|
|
- <a href="mailto:[email protected]" target="_blank"><i class="mail outline icon"></i>[email protected]</a>
|
|
|
- /
|
|
|
- <a href="http://imuslab.com"><i class="home icon"></i>http://imuslab.com</a>
|
|
|
- </div>
|
|
|
- <p>The ArOZ Online System is CopyRight tobychui. Contact us at [email protected] for questions and bug report.</p>
|
|
|
- <br>
|
|
|
- </div>
|
|
|
-</body>
|
|
|
-<script>
|
|
|
- $.get("../../system/id/requestInfo",function(data){
|
|
|
- $("#sysuuid").text(data.SystemUUID);
|
|
|
- $("#vcode").text(data.Build + " v" + data.Version);
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
-</script>
|
|
|
+<!DOCTYPE html>
|
|
|
+<head>
|
|
|
+ <title>System Info</title>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
|
|
|
+ <link rel="stylesheet" href="../../script/semantic/semantic.min.css">
|
|
|
+ <script type="text/javascript" src="../../script/jquery.min.js"></script>
|
|
|
+ <script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
|
|
|
+ <!-- <script type="text/javascript" src="../../script/ao_module.js"></script> -->
|
|
|
+</head>
|
|
|
+
|
|
|
+<body>
|
|
|
+ <div class="ui container">
|
|
|
+ <div class="ui basic segment" style="text-align:left">
|
|
|
+ <h2 class="ui header">
|
|
|
+ ArOZ Online System
|
|
|
+ <div class="sub header">General purpose web desktop system</div>
|
|
|
+ </h2>
|
|
|
+ <div class="ui divider"></div>
|
|
|
+ <p style="margin-top:-12px;">System Version: <span id="vcode"></span></p>
|
|
|
+ <p style="margin-top:-12px;">System UUID: <span id="sysuuid"></span></p>
|
|
|
+ <img src="../info/img/banner.jpg" class="ui fluid image"></img>
|
|
|
+ <br>
|
|
|
+ <p>Developed under ArOZ Project by tobychui<br>
|
|
|
+ Special thanks to Alan Yeung, AceSaad and others who help with this project.</p>
|
|
|
+ <div class="ui divider"></div>
|
|
|
+ <a href="mailto:[email protected]" target="_blank"><i class="mail outline icon"></i>[email protected]</a>
|
|
|
+ /
|
|
|
+ <a href="https://imuslab.com"><i class="home icon"></i>https://imuslab.com</a>
|
|
|
+ <br>
|
|
|
+ <small>The ArOZ Online System code, logo and artworks are CopyRight tobychui, All Right Reserved. Visit our <a href="https://github.com/tobychui/arozos" target="_blank">Github repo</a> for questions or bug reports.</small>
|
|
|
+ <br>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+<script>
|
|
|
+ $.get("../../system/id/requestInfo",function(data){
|
|
|
+ $("#sysuuid").text(data.SystemUUID);
|
|
|
+ $("#vcode").text(data.Build + " v" + data.Version);
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+</script>
|
|
|
</html>
|