16 lines
370 B
HTML
16 lines
370 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="/chat.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>Chat</h1>
|
|
<div id="users"></div>
|
|
<div id="msgs"></div>
|
|
<form id="send">
|
|
<input id="sendcontent" name="content" autofocus required />
|
|
<input type="submit" value="Send" />
|
|
</form>
|
|
</body>
|
|
</html>
|