31 lines
694 B
HTML
31 lines
694 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="/chat.js" defer></script>
|
|
<style>
|
|
#users_box {
|
|
float: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Chat</h1>
|
|
<div id="users_box">
|
|
<h3>Online Users :</h3>
|
|
<div id="users"></div>
|
|
</div>
|
|
<div id="msgs"></div>
|
|
<form id="send">
|
|
<input
|
|
id="sendcontent"
|
|
name="content"
|
|
autofocus
|
|
required
|
|
minlength="1"
|
|
maxlength="500"
|
|
/>
|
|
<input type="submit" value="Send" />
|
|
</form>
|
|
</body>
|
|
</html>
|