-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
executable file
·50 lines (45 loc) · 1.41 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
<html>
<head>
<title>Pi Control</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="apple-touch-icon-precomposed" href="Icon.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="[email protected]" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="Icon-72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="[email protected]" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<link rel="stylesheet" type="text/css" href="./css/main.css">
</head>
<body>
<div class="loading">
<div class="message">Shutdown...</div>
</div>
<div class="center">
<h1>Raspberry Pi Control</h1>
<p>
<a href="/shutdown" class="danger">Shutdown</a>
</p>
<p>
<a href="/restart" class="danger">Reboot</a>
</p>
<div id="diskspace">
<h1>Disk</h1>
<div id="drives">
</div>
</div>
<div style="display:none" id="template">
<div class="disk">
<p><b>{{name}}</b></p>
<div id="prgoress">
<div id="progress_bg"> </div>
<div id="progress_value" style="width:{{percentage}}%">{{percentage}}%</div>
</div>
<br/><br/>
<b>Used:</b> {{used_gb}} GB ,
<b>Free:</b> {{free_gb}} GB ,
<b>Total:</b> {{total_gb}} GB
</div>
</div>
</div>
</html>