-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
135 lines (125 loc) · 4.03 KB
/
index.htm
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!doctype html>
<html>
<head>
<title>ShackDNS</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css">
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="frontend.js"></script>
</head>
<body>
<nav>
<div class="logo">
<img src="img/logo.svg">
</div><button id="dhcp-button" class="checked" onclick="setActivePane('dhcp')">
DHCP
</button><button id="services-button" onclick="setActivePane('services')">
Services
</button><button id="shackles-button" onclick="setActivePane('shackles')">
Shackles
</button><button id="infra-button" onclick="setActivePane('infra')">
Infrastructure
</button><button id="about-button" class="rightalign" onclick="setActivePane('about')">
About
</button><button id="refresh-button" class="rightalign imagebtn" title="Refresh data" onclick="liveReloadData()">
<svg viewBox="0 0 24 24">
<path
d="M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z" />
</svg>
</button>
</nav>
<section id="dhcp-pane" class="enabled">
<table>
<tr>
<th>Device Name</th>
<th>MAC</th>
<th>Vendor</th>
<th>IP</th>
<th>Created</th>
<th>Last Refresh</th>
</tr>
<tr class="entry">
<td>Daddys Laptop</td>
<td><a href="http://AA-BB-CC-DD-EE-FF.device.shack">AA:BB:CC:DD:EE:FF</a></td>
<td>Unknown Vendor</td>
<td>127.0.0.1</td>
<td>2013-08-21 22:30</td>
<td>2019-12-22 23:51</td>
</tr>
<tr class="entry">
<td>Mamas iPhone</td>
<td><a href="http://FF-AA-EE-BB-DD-CC.device.shack">FF:AA:EE:BB:DD:CC</a></td>
<td>Unknown Vendor</td>
<td>127.0.0.1</td>
<td>2013-08-21 22:30</td>
<td>2019-12-22 23:51</td>
</tr>
</table>
</section>
<section id="services-pane">
<table>
<tr>
<th>Service</th>
<th>Contact</th>
<th>Primary DNS</th>
<th>Primary IP</th>
<th>Last Seen</th>
<th>Availability</th>
<th>Links</th>
</tr>
<tr class="entry">
<td>Kiosk</td>
<td><a href="mailto:[email protected]">xq</a></td>
<td><a href="http://kiosk.shack">kiosk.shack</a></td>
<td><span class="ip online" title="45 ms">10.42.20.23</span></td>
<td>2019-12-22 23:51</td>
<td>80%</td>
<td>
<a class="link wiki" href="javascript:alert('wiki me')"> </a>
<a class="link edit" href="javascript:alert('edit me')"> </a>
</td>
</tr>
<tr class="entry">
<td>MPD (Lounge)</td>
<td><a href="mailto:[email protected]">xq</a></td>
<td><a href="http://lounge.mpd.shack">lounge.mpd.shack</a></td>
<td class="online" title="45 ms">10.42.20.23</td>
<td>2019-12-22 23:51</td>
<td>90%</td>
<td>
<a class="link wiki" href="javascript:alert('wiki me')"> </a>
<a class="link edit" href="javascript:alert('edit me')"> </a>
</td>
</tr>
</table>
</section>
<section id="infra-pane">
<iframe src="infra.htm">
Hier könnte ihre Infrastruktur-Dokumentation stehen!
</iframe>
</section>
<section id="shackles-pane">
<table>
<tr>
<th>Who</th>
<th>Online</th>
</tr>
<tr class="entry">
<td>xq</td>
<td><span class="status online">Yes</span></td>
</tr>
<tr class="entry">
<td>Raute</td>
<td><span class="status offline">No</span></td>
</tr>
</table>
</section>
<section id="about-pane">
<p>Made by: <a href="https://wiki.shackspace.de/leute/xq">xq</a>
<p>Documentation: <a href="https://wiki.shackspace.de/doku/rz/shackdns">wiki.shackspace.de</a>
</section>
<script type="text/javascript">
initializeServices();
</script>
</body>
</html>