blob: 71ba87f945b7d564bc07bf74735feb9f726d58cd (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>websweeper</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<form id="identform" style="display: none" action="javascript:;" onsubmit="join()">
<input id="name-in" type="text" value="anon">
<input id="clr-in" type="color" value="#33c033"></input>
<button>Join</button>
</form>
<div>
<div id="board-container">
<span id="board"></span>
<div id="cursor-frame"></div>
</div>
<div class="statusline">
<p id="miscinfo"></p>
<div>
<span id="volbutton" style="margin-right: 0">🔈</span>
<input id="volslider" type="range" min="0" max="1" step="0.01">
</div>
<a href="javascript:navigator.clipboard.writeText(window.location.href);alert('copied link to clipboard');">🔗share</p>
<a href="javascript:clear_ident();">new identity</p>
<a href="..">back to lobby</a>
</div>
</div>
</body>
<script src="https://unpkg.com/fflate"></script>
<script src="../client.js"></script>
</html>
|