yjs/examples_all/chat/index.html
2018-11-25 22:39:50 +01:00

20 lines
509 B
HTML

<!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>
<script src='../../../y-websockets-client/y-websockets-client.mjs'></script>
<script src="./index.js"></script>
</body>
</html>