123456789101112131415161718192021222324252627282930313233 |
- <!doctype html>
- <html>
- <head>
- <title>
- game demo
- </title>
- <script src='https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js'></script>
- </head>
- <body>
- <h1>
- game
- </h1>
- <div>
- <input placeholder='Nick' id='nick' value='Anon'/>
- <label id='connectLabel'>
- <input type='checkbox' id='connect'>Connect
- </label>
- <div id='nicksDiv'>
- </div>
- <label>
- <input type='checkbox' id='newGame'>New Game
- </label>
- </div>
- <div id='gameDiv'>
- <div id='enemyData'>
- </div>
- <input placeholder='Город' id='data' />
- <button id='send'>Send...</button>
- </div>
- <script src='/js/index.js'></script>
- </body>
- </html>
|