forked from compunet-jimmy/nts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.81 KB
/
Copy pathindex.html
File metadata and controls
77 lines (77 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAKCAIAAAB4a0T2AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5QcXDSwT3bp0ZgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAJUlEQVQI12NggID/B8P9/xdAYGBgYFJ3B4qMjIwMAQKZCQEdDgoQBJsAN/QEVoAAAAASUVORK5CYII=">
<title>Network T-Shoot Server</title>
<style>
body {
background-color: #A9A9A9; /* Medium gray background */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #ffffff; /* White box */
color: #000000; /* Black font */
text-align: center;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 80%;
max-width: 600px;
border-radius: 8px;
}
h1 {
margin-bottom: 40px;
}
hr {
border: 0;
height: 1px;
background-color: #A9A9A9;
}
.link-container {
margin: 10px 0;
}
.link-container a {
color: #000000; /* Black link */
text-decoration: none;
font-weight: bold;
}
.link-container a:hover {
text-decoration: underline;
}
.link-container img {
display: block;
margin: 10px auto;
max-width: 500px;
}
</style>
</head>
<body>
<div class="container">
<h1>Network T-Shoot Server</h1>
<div class="link-container">
<a href="http://${HOST_IP}:5000">Netdisco (${HOST_IP}:5000)</a><br />
<a href="http://${FQDN}:5000">netdisco-${FQDN} (Requires DNS Entry)</a>
<a href="http://${HOST_IP}:5000"><img src="images/netdisco_500px.png" alt="Netdisco Logo"></a>
<hr />
</div>
<div class="link-container">
<a href="http://${HOST_IP}:8080">LibreSpeed (${HOST_IP}:8080)</a><br />
<a href="http://${FQDN}:8080">librespeed-${FQDN} (Requires DNS Entry)</a>
<a href="http://${HOST_IP}:8080"><img src="images/librespeed_500px.png" alt="LibreSpeed Logo"></a>
<hr />
</div>
<div class="link-container">
<a href="http://${HOST_IP}:8000">LibreNMS (${HOST_IP}:8000)</a><br />
<a href="http://${FQDN}:8000">librenms-${FQDN} (Requires DNS Entry)</a>
<a href="http://${HOST_IP}:8000"><img src="images/librenms_500px.png" alt="LibreNMS Logo"></a>
</div>
</div>
</body>
</html>