-
Notifications
You must be signed in to change notification settings - Fork 0
/
status.html
117 lines (112 loc) · 3.99 KB
/
status.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, user-scalable=no">
$(if refresh-timeout)
<meta http-equiv="refresh" content="$(refresh-timeout-secs)">
$(endif)
<title>$(identity) -> Status</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/ubuntu.css">
<style type="text/css">
* {
font-family: 'Ubuntu';
}
body{
background: #DDD;
}
input:focus{
outline: none;
}
</style>
</head>
<body>
<div class="container green" style="min-height: 50vh;"></div>
<div class="display-middle padding-small border-top card border-green white round" style="min-width: 340px; max-width: 340px;">
<p align="center">
<b class="text-green">$(identity)</b><br>
<b id="date" class="small"></b><br>
<span id="time" class="small"></span>
</p>
<p align="center">
<img src="assets/icon/identity.png" width="50" height="50"><br>$(username)
</p>
<hr>
<p align="center">
<div class="row small">
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/ip-address.png" width="50" height="50"></a><br>IP<br>$(ip)
</div>
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/mac-address.png" width="50" height="50"></a><br>MAC<br>$(mac)
</div>
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/uptime.png" width="50" height="50"></a><br>Uptime<br>$(uptime)
</div>
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/time.png" width="50" height="50"></a><br>Session Time Left<br>$(session-time-left)
</div>
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/download.png" width="50" height="50"></a><br>Download<br>$(bytes-out-nice)
</div>
<div class="col s4 center margin-bottom">
<a href="#"><img src="assets/icon/upload.png" width="50" height="50"></a><br>Upload<br>$(bytes-in-nice)
</div>
</div>
</p>
<hr>
<form action="$(link-logout)" name="logout" onSubmit="return openLogout()">
<input type="hidden" name="dst" value="$(link-orig)" />
<input type="hidden" name="popup" value="true" />
<input type="hidden" name="erase-cookie" value="on" class="form-control">
<p align="center">
<button class="button red border border-red round">Disconnect</button>
</p>
</form>
</div>
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript">
function showTime() {
var a_p = "";
var today = new Date();
var curr_hour = today.getHours();
var curr_minute = today.getMinutes();
var curr_second = today.getSeconds();
if (curr_hour < 12) {
a_p = "AM";
} else {
a_p = "PM";
}
if (curr_hour == 0) {
curr_hour = 12;
}
if (curr_hour > 12) {
curr_hour = curr_hour - 12;
}
curr_hour = checkTime(curr_hour);
curr_minute = checkTime(curr_minute);
curr_second = checkTime(curr_second);
$("#time").html(curr_hour + ":" + curr_minute + ":" + curr_second + " " + a_p);
}
function checkTime(i) {
if (i < 10) {
i = "0" + i;
}
return i;
}
setInterval(showTime, 500);
var months = ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember'];
var myDays = ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jum'at', 'Sabtu'];
var date = new Date();
var day = date.getDate();
var month = date.getMonth();
var thisDay = date.getDay(),
thisDay = myDays[thisDay];
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
$("#date").html(thisDay + ', ' + day + ' ' + months[month] + ' ' + year);
</script>
</body>
</html>