OLD | NEW |
1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
2 <head> | 2 <head> |
3 <title> System Information </title> | 3 <title> System Information </title> |
4 <script src="main.js"></script> | 4 <script src="main.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <div id="title"><b>Storage Information</b></div> | 7 <h2><b>CPU Information</b></h2> |
| 8 <div id="cpu-info"> |
| 9 <i> Loading ...</i> |
| 10 </div> |
| 11 <div id="cpu-cores"> |
| 12 <i> <br>Loading ...</i> |
| 13 </div> |
| 14 <h2><b>Memory Information</b></h2> |
| 15 <div id="memory-info"> |
| 16 <i>Loading...</i> |
| 17 </div> |
| 18 <h2><b>Storage Information</b></h2> |
| 19 <div> |
| 20 <i>Monitor free space change? </i> |
| 21 <input type="button" value="Start" id="start-btn"></input> |
| 22 <input type="button" value="Stop" id="stop-btn"></input> |
| 23 </div> |
8 <div id="storage-list"> | 24 <div id="storage-list"> |
9 <i>Loading ...</i> | 25 <i>Loading ...</i> |
10 </div> | 26 </div> |
11 <div> | |
12 <i>Monitor free space change? </i> | |
13 <input type="button" value="Start" id="start-btn"></input> | |
14 <input type="button" value="Stop" id="stop-btn"></input> | |
15 </div> | |
16 </body> | 27 </body> |
17 </html> | 28 </html> |
OLD | NEW |