19_chat_async_await.html 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0025)http://192.168.1.20:5000/ -->
  3. <html>
  4. <head>
  5. <img src="" />
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <link rel="stylesheet" href="./css/reset.css" />
  8. <link rel="stylesheet" href="./css/normalize.css" />
  9. <link rel="stylesheet" href="./css/stylechat.css" />
  10. <title>19_chat_async_await_FEA23_Sheva</title>
  11. </head>
  12. <body>
  13. <div id="formContainer"></div>
  14. <div class="allWindow">
  15. <div class="chatPlusNick">
  16. <div class="chatClass" id="chatWindow">Собственно сам чат <b></b></div>
  17. <div class="nicksPresent" id="whoIsHere">Кто у нас тут в чате:</div>
  18. </div>
  19. <div class="controlPanel">
  20. <span class="nickName">Твой ник:</span>
  21. <input type="text" id="nickId" class="nickValueClass" />
  22. <input type="text" id="msgId" class="msgClass" />
  23. <button id="sendId" class="sendBtn">Send msg</button>
  24. </div>
  25. </div>
  26. <div class="smileArea" id="smileArea"></div>
  27. <script src="./hw19.js"></script>
  28. </body>
  29. </html>