SocketRocket/TestChatServer/static/index.html
Mike Lewis f8b18db1dd Updated go version to serve static assets
Also moved static assets up a directory
2012-02-05 23:11:02 -08:00

39 lines
747 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script src='proxy.js'>
</script>
<style type='text/css'>
html {
background-color: rgb(48,48, 48);
color: rgb(221, 190, 120);
font-family: "HelveticaNeue", Helvetica, Arial;
}
a {
color: rgb(193, 127, 128);
}
#info_div {
font-size:small;
color: rgb(108, 144, 100);
}
.device_details {
font-size:small;
}
</style>
</head>
<body>
<h3>Chat History</h3>
<ul id='history'>
</ul>
<form id="msg_form">
<input type='text' name='message' id='msg_field'/>
<input type='submit'/>
</form>
<ul id='client_list'></ul>
<div id='info_div'></div>
</body>
</html>