-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
54 lines (46 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>InnitNet</title>
<link rel="icon" href="https://minecraft.wiki/images/Invicon_Cobweb.png?cb28b" type="image/png">
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
</head>
<body>
<div id="loading-overlay">
<div id="loading-text">loading...</div>
</div>
<div id="left-panel">
<div id="top-buttons">
<button class="top-btn" id="toggle-panel">=</button>
<button class="top-btn" id="toggle-gray">-></button>
<button class="top-btn" id="toggle-weight">V</button>
<button class="top-btn" id="toggle-distance">A</button>
<button class="top-btn"></button>
</div>
<div id="cooldown-container">
<div id="cooldown-bar"></div>
</div>
<input id="search" placeholder="Search player..." />
<div id="connection-lists" class="hidden">
<div id="mutual-section" class="headline">Mutual Connections:</div>
<div id="nonmutual-section" class="headline" style="margin-top:6px;">Non-Mutual Connections:</div>
</div>
<div id="profile-viewer" class="hidden">
<div class="headline">Profile</div>
<div id="profile-content" style="padding-left:5%; color:#ccc;">
Select a player to view profile information.
</div>
</div>
</div>
<div id="status-bar">
<div id="status-text">Players: 0 | Connections: 0</div>
<label style="display:flex; align-items:center; cursor:pointer; margin-right:18px;">
<input type="checkbox" class="hidden" id="show-all-players" style="margin-right:6px;" /><!--Show all players-->
</label>
</div>
<div id="network"></div>
<script src="scripts.js"></script>
</body>
</html>