24 lines
743 B
HTML
24 lines
743 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-array/y-array.js"></script>
|
|
<script src="../../../y-map/dist/y-map.js"></script>
|
|
<script src="../../../y-text/dist/y-text.js"></script>
|
|
<script src="../../../y-memory/y-memory.js"></script>
|
|
<script src="../../../y-websockets-client/dist/y-websockets-client.js"></script>
|
|
<script src="./index.js"></script>
|
|
</body>
|
|
</html>
|