Files
safechat/html/chat.html
Marc Wäckerlin 0758a9d217 first design
2015-06-29 22:34:37 +00:00

7 lines
374 B
HTML

<form id="chat" autocomplete="off" onsubmit="sendmessage(this.elements['recv'].value, this.elements['msg'].value)">
<input placeholder="receiver" autocomplete="off" type="text" id="recv" oninput="checkpartner(this.value)" />
<input placeholder="message" autocomplete="off" type="text" id="msg"/>
<input type="submit" id="send" disabled/>
</form>
<div id="msgs"></div>