123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <!-- saved from url=(0025)http://192.168.1.20:5000/ -->
- <html>
- <head>
- <img src="" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <link rel="stylesheet" href="./css/reset.css" />
- <link rel="stylesheet" href="./css/normalize.css" />
- <link rel="stylesheet" href="./css/stylechat.css" />
- <title>19_chat_async_await_FEA23_Sheva</title>
- </head>
- <body>
- <div id="formContainer"></div>
- <div class="allWindow">
- <div class="chatPlusNick">
- <div class="chatClass" id="chatWindow">Собственно сам чат <b></b></div>
- <div class="nicksPresent" id="whoIsHere">Кто у нас тут в чате:</div>
- </div>
- <div class="controlPanel">
- <span class="nickName">Твой ник:</span>
- <input type="text" id="nickId" class="nickValueClass" />
- <input type="text" id="msgId" class="msgClass" />
- <button id="sendId" class="sendBtn">Send msg</button>
- </div>
- </div>
- <div class="smileArea" id="smileArea"></div>
- <script src="./hw19.js"></script>
- </body>
- </html>
|