/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
core-java-modules/java-websocket/src/main/webapp/index.html
30 строк
814 B
anuragkumawat
JAVA-29231 Move modules inside existing container modules (#15492)
01 янв 2024, 22:27
01 янв 2024, 22:27
2096eac
Код
Авторство
О чём код?
<html> <head> <title>Chat</title> </head> <body> <table> <tr> <td colspan="2"> <input type="text" id="username" placeholder="Username"/> <button type="button" onclick="connect();" >Connect</button> </td> </tr> <tr> <td> <textarea readonly="true" rows="10" cols="80" id="log"></textarea> </td> </tr> <tr> <td> <input type="text" size="51" id="msg" placeholder="Message"/> <button type="button" onclick="send();" >Send</button> </td> </tr> </table> </body> <script src="websocket.js"></script> </html>