| 123 |
- <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Donut Bingo</title> <style>*{margin:0;padding:0;box-sizing:border-box}body,html{height:100%;width:100%}body{display:flex;flex-direction:column;justify-content:center;align-items:center}#createModal{display:flex;flex-direction:column;width:50%;position:fixed;left:25%;background:#fff;z-index:2}
- </style> </head> <body> <h1>Donut Bingo</h1> <button onclick="createModal()">Create Game</button> <form id="createModal" style="display:none"> <label>Game Name: <input type="text" id="createName" required> </label> <label>Password: <input type="password" id="createPass" required> </label> <label>Bingo options (comma seperated): <input type="text" id="createOptions" required> </label></form> <script>(()=>{var e=new WebSocket("ws://localhost:8000/ws"),s={message:"create",p:"12345"};e.onopen=()=>{e.send(JSON.stringify(s))};e.onmessage=o=>{console.log(o.data)};})();
- </script> </body> </html>
|