22 lines
351 B
HTML
22 lines
351 B
HTML
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<!-- TODO: conversations -->
|
||
|
|
||
|
|
||
|
<!-- messages from current conversations -->
|
||
|
<ul id="messages"></ul>
|
||
|
|
||
|
<!-- message box displays the next message to send -->
|
||
|
<input id="textbox" type="text" disabled></input>
|
||
|
|
||
|
<button onclick="send()">Send</button>
|
||
|
|
||
|
<span id="delay"></span>
|
||
|
|
||
|
<script src="main.js"></script>
|
||
|
</body>
|
||
|
</html>
|