summaryrefslogtreecommitdiff
path: root/client/index.html
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-29 21:52:26 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-29 21:52:26 -0400
commit484409b64d0a1dadcf35fa664ecf3dcd4808a83a (patch)
treeba9bd26d0914f369d3eafa8a04b12bec69a70fcc /client/index.html
parentwhen players die, they should acutally fucking die (diff)
downloadtuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.tar.gz
tuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.tar.bz2
tuxman-484409b64d0a1dadcf35fa664ecf3dcd4808a83a.zip
custom map overrides
Diffstat (limited to 'client/index.html')
-rw-r--r--client/index.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html
index 3145ab0..daa23b7 100644
--- a/client/index.html
+++ b/client/index.html
@@ -14,12 +14,24 @@
<input type="text" id="player_name" name="name" placeholder="Player Name">
<input type="submit" value="Join!"/>
</form>
+ <input id="custommaps" type="button" value="Custom Map Overrides">
<input id="mapeditor" type="button" value="Map Editor">
<div id="lobby" style="display: none;">
<span>Players:</span>
<div id="players"></div>
<input type="button" id="start" value="Start Game"/>
</div>
+ <div id="popup" style="display: none">
+ <input type="button" id="close" value="x" style='margin-bottom: .5rem' onclick="document.getElementById('popup').style.display = 'none'">
+ Map 1
+ <textarea id="map1"></textarea>
+ Map 2
+ <textarea id="map2"></textarea>
+ Map 3
+ <textarea id="map3"> </textarea>
+ Map 4
+ <textarea id="map4"></textarea>
+ </div>
</div>
</div>
<script src="js/main.js" type="module"></script>