WIP: snapshot of all local changes
This commit is contained in:
parent
4f9fdb911e
commit
dc774beb6b
6 changed files with 942 additions and 0 deletions
43
static_ws/index.html
Normal file
43
static_ws/index.html
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Dereth Tracker</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- SIDEBAR -->
|
||||
<aside id="sidebar">
|
||||
<!-- Segmented sort buttons -->
|
||||
<div id="sortButtons" class="sort-buttons"></div>
|
||||
|
||||
<h2>Active Players</h2>
|
||||
<ul id="playerList"></ul>
|
||||
</aside>
|
||||
|
||||
<!-- MAP -->
|
||||
<div id="mapContainer">
|
||||
<div id="mapGroup">
|
||||
<img id="map" src="dereth.png" alt="Dereth map">
|
||||
<svg id="trails"></svg>
|
||||
<div id="dots"></div>
|
||||
</div>
|
||||
<div id="tooltip" class="tooltip"></div>
|
||||
</div>
|
||||
|
||||
<!-- Chat Overlay -->
|
||||
<div id="chatOverlay" class="chat-overlay hidden">
|
||||
<div class="chat-header">
|
||||
<span id="chatTitle">Chat</span>
|
||||
<button id="chatClose">×</button>
|
||||
</div>
|
||||
<div id="chatMessages" class="chat-messages"></div>
|
||||
<form id="chatForm" class="chat-form">
|
||||
<input type="text" id="chatInput" placeholder="Type a message..." autocomplete="off"/>
|
||||
<button type="submit">Send</button>
|
||||
</form>
|
||||
</div>
|
||||
<script src="script.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue