MultiplayerMinesweeper/www/index.html

47 lines
1.7 KiB
HTML
Raw Normal View History

2022-06-19 20:21:33 +00:00
<!DOCTYPE html>
<html>
<head>
<title></title>
2022-06-19 21:54:34 +00:00
<script src="http://localhost:35729/livereload.js" charset="utf-8"></script>
2022-06-22 01:51:09 +00:00
<script type="text/javascript" src="socket.io.min.js"></script>
2022-06-19 20:21:33 +00:00
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Canvas used to generate individual sprites off one sprite atlas -->
<canvas class="hidden" id="spriteJank" width=24 height=24></canvas>
<div class="container" id="container" style="display: none;">
<h1>Project</h1>
<div class="wrapper" id="wrapper">
2022-06-21 14:46:34 +00:00
<!-- <div class="top"> -->
2022-06-19 20:21:33 +00:00
<h4 id="status">Connection Status</h4>
2022-06-21 14:46:34 +00:00
<!-- </div> -->
<!-- <span class ="left"><p>left</p></span> -->
2022-06-19 20:21:33 +00:00
<span class="canvasStack">
<canvas oncontextmenu="return false;" class="canvas1" id="canvas" width=0 height=0></canvas>
<canvas oncontextmenu="return false;" class="canvas3" id="hud" width="0" height="0"></canvas>
2022-06-19 20:21:33 +00:00
</span>
2022-06-21 14:46:34 +00:00
<!-- <span class ="right"><p>right</p></span> -->
2022-06-19 20:21:33 +00:00
2022-06-21 14:46:34 +00:00
<!-- <div class="bottom"> -->
<!-- <div class="buttonBar" id="buttonBar"> -->
2022-06-19 20:21:33 +00:00
<!-- <span class="button" no="1"></span>
<span class="button" no="2"></span>
<span class="button" no="3"></span>
<span class="button" no="4"></span>
<span class="button" no="null"></span> -->
2022-06-21 14:46:34 +00:00
<!-- </div> -->
2022-06-19 20:21:33 +00:00
</div>
</div>
</div>
<div class="menu" id="menu">
<input type="text" id="room" value="room">
<input type="text" id="name" value="bob">
<input type="submit" id="submit" value="join">
</div>
</body>
2022-06-19 21:54:34 +00:00
<script src='scripts/script.js' type="module"></script>
2022-06-19 20:21:33 +00:00
</html>