index.html 884 B

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>
  5. game demo
  6. </title>
  7. <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
  8. </head>
  9. <body>
  10. <h1>
  11. game
  12. </h1>
  13. <div>
  14. <input placeholder='Nick' id='nick' value='Anon'/>
  15. <label id='connectLabel'>
  16. <input type='checkbox' id='connect'>Connect
  17. </label>
  18. <div id='nicksDiv'>
  19. </div>
  20. <label>
  21. <input type='checkbox' id='newGame'>New Game
  22. </label>
  23. </div>
  24. <div id='gameDiv'>
  25. <div id='enemyData'>
  26. </div>
  27. <input placeholder='Город' id='data' />
  28. <button id='send'>Send...</button>
  29. </div>
  30. <script src='/js/index.js'></script>
  31. </body>
  32. </html>