-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (93 loc) · 3.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html land="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" context="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://bootswatch.com/5/cyborg/bootstrap.min.css"
/>
<title>System Reporter</title>
</head>
<body>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div class="col-lg-12">
<h1>System Reporter</h1>
<p class="lead">
Below you will find basic statistics for your machine.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<h4>The Basics</h4>
<div class="row">
<div class="col-sm">
<div class="bs-component">
<div class="card text-white bg-primary mb-3">
<div class="card-header">CPU</div>
<div class="card-body">
<h6 id="Architecture">Architecture</h6>
<h6 id="CPUs">Core Count</h6>
<h6 id="VendorID">Vendor</h6>
<h6 id="Modelname">Model Name</h6>
<h6 id="CPUminMHz">Min MHz</h6>
<h6 id="CPUmaxMHz">Max MHz</h6>
<p class="card-text">TODO: Enter more stats here.</p>
<a href="#" class="text-white">More CPU Information</a>
</div>
</div>
</div>
</div>
<div class="col-sm">
<div class="bs-component">
<div class="card text-white bg-success mb-3">
<div class="card-header">Identifiers</div>
<div class="card-body">
<h6 id="Statichostname">Hostname</h6>
<h6 id="privateIpv4Address">Private IPv4 Address</h6>
<h6 id="publicIpv4Address">Public IPv4 Address</h6>
<h6 id="privateIpv6Address">Private IPv6 Address</h6>
<p class="card-text">TODO: Enter more stats here.</p>
<a href="#" class="text-white">More Identifier Information</a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm">
<div class="bs-component">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Memory(MB)</div>
<div class="card-body">
<h6 id="MemTotal">Total RAM</h6>
<h6 id="MemAvailable">Available RAM</h6>
<h6 id="PersistantStorageType">Persistent Storage Type</h6>
<h6 id="TotalDiskCapacity">Total Disk Capacity</h6>
<p class="card-text">TODO: Enter more stats here.</p>
<a href="#" class="text-white">More Memory Information</a>
</div>
</div>
</div>
</div>
<div class="col-sm">
<div class="bs-component">
<div class="card text-white bg-danger mb-3">
<div class="card-header">Processes</div>
<div class="card-body">
<p class="card-text">TODO: Enter more stats here.</p>
<a href="#" class="text-white">More Process Information</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="dist/renderer/main.js" defer></script>
</body>
</html>