23 lines
430 B
HTML
23 lines
430 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="chat">
|
|
<ul id="messages"></ul>
|
|
<form id="form" action="">
|
|
name: <input id="name" autocomplete="off" /><br/>
|
|
<input id="m" autocomplete="off" autofocus />
|
|
<button>send</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="/chat.js"></script>
|
|
</body>
|
|
|
|
</html>
|