17 lines
772 B
HTML
17 lines
772 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>EventSource example</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<link href="nodechat.css" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript" src="eventsource.js"></script>
|
|
<script type="text/javascript" src="nodechat.js"></script>
|
|
</head>
|
|
<body>
|
|
<a id="logo" href="http://github.com/yaffle/EventSource"></a>
|
|
<form action="?"><input type="text" name="message" id="message" maxlength="140" required /><input type="submit" value="Send message" /><span id="readyStateConnecting">connecting</span><span id="readyStateOpen">open</span><span id="readyStateClosed">closed</span></form>
|
|
<div id="msgs"></div>
|
|
<a href="tests.html">tests</a>
|
|
</body>
|
|
</html> |