diff options
author | stale <redkugelblitzin@gmail.com> | 2022-06-01 04:34:31 -0300 |
---|---|---|
committer | stale <redkugelblitzin@gmail.com> | 2022-06-01 04:34:31 -0300 |
commit | b1bef4d9bc28c9b4ef57b750368e92cb1878eba7 (patch) | |
tree | c501f0295b96d99f90f4096ad9ad610af578bace /assets/room.html | |
parent | 61cbf1a8b0c3df89d41bc52c3b188231b4334d3d (diff) |
localStorage of identities, UI overhaul
Diffstat (limited to 'assets/room.html')
-rw-r--r-- | assets/room.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/assets/room.html b/assets/room.html index 4470aea..281afce 100644 --- a/assets/room.html +++ b/assets/room.html @@ -11,7 +11,15 @@ <div id="board-container"> <span id="board"></span> </div> - <p id="miscinfo">Loading...</p> + <form id="identform" action="javascript:;" onsubmit="new_ident()"> + <input id="name-in" type="text" value="anon"> + <input id="clr-in" type="color" value="#33c033"></input> + <button>Join</button> + </form> + <div id="statusline"> + <p id="miscinfo"></p> + <p onclick="new_ident_btn()">new identity</p> + </div> </div> </body> <script src="https://unpkg.com/fflate"></script> |