[go: up one dir, main page]

Menu

[c607c4]: / index.html  Maximize  Restore  History

Download this file

82 lines (56 with data), 1.9 kB

 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.$ = window.jQuery = require('jquery');
</script>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/amaran.min.css">
</head>
<body>
<div id="title-bar">
<button type="button" id="close-btn"></button>
<button type="button" id="min-btn"></button>
<span style="margin:0 auto 0 -60px;">Stacer</span>
</div>
<ul id="nav">
<li><label id="dashboard-btn" class="nav-active">Dashboard</label></li>
<li><label id="system-cleaner-btn">System Cleaner</label></li>
<li><label id="startup-apps-btn">Startup Apps</label></li>
<li><label id="system-services-btn">Services</label></li>
<li><label id="uninstaller-btn">Uninstaller</label></li>
</ul>
<div id="dashboard-content" data-nav="dashboard-btn" class="content">
<div style="float:left; width:870px">
<div class="cont" id="cpu-cont">
CPU</div>
<div class="cont" id="mem-cont">
MEMORY</div>
<div class="cont" id="disk-cont">
DISK</div>
<div class="system-info">
SYSTEM INFO
<ul></ul>
</div>
<div class="cont" style="width:auto; float:right; padding-bottom:40px;">
<span style="float:left;">DOWNLOAD</span>
<div id="down-bar"></div>
</div>
<div class="cont" style="width:auto; float:right; padding-bottom:40px;">
<span style="float:left;">UPLOAD</span>
<div id="up-bar"></div>
</div>
</div>
</div>
<div id="system-cleaner-content" data-nav="system-cleaner-btn" class="content dn">
</div>
<div id="startup-apps-content" data-nav="startup-apps-btn" class="content dn">
</div>
<div id="system-service-content" data-nav="system-services-btn" class="content dn">
</div>
<div id="uninstaller-content" data-nav="uninstaller-btn" class="content dn">
</div>
<script src="src/stacer.js"></script>
</body>
</html>