Files
yjs/examples_all/chat/index.html

20 lines
509 B
HTML
Raw Normal View History

2017-05-19 02:21:50 +02:00
<!DOCTYPE html>
<html>
<body>
<style>
#chat p span {
color: blue;
}
</style>
<div id="chat"></div>
<form id="chatform">
<input name="username" type="text" style="width:15%;">
<input name="message" type="text" style="width:60%;">
<input type="submit" value="Send">
</form>
<script src="../../y.js"></script>
2018-11-25 22:39:30 +01:00
<script src='../../../y-websockets-client/y-websockets-client.mjs'></script>
2017-05-19 02:21:50 +02:00
<script src="./index.js"></script>
</body>
</html>