Sha256: 5630941a26e1707152949774b73ac33bfe481420bc1944154b9e6b36bc6880a1

Contents?: true

Size: 927 Bytes

Versions: 2

Compression:

Stored size: 927 Bytes

Contents

<!DOCTYPE html>
<html>
  <head>
	<title>Mad Chatter</title>
	<link rel="stylesheet" href="styles.css">
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js'></script>
	<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js'></script>
	<script src='/mad_chatter.js'></script>
	<script src='/mad_chatter_actions.js'></script>
	<script>
		$(document).ready(function(){
			MadChatter.init('ws://localhost:8100');
		});
	</script>
  </head>
  <body>
		
	<div id="login_screen">
		<header>
			<h1>Welcome!</h1>
		</header>
		<div id="pick_a_username">
			<p>What is your name?</p>
			<input id="username" type="text"> <button id="join">Join</button>
		</div>
	</div>
		
	<div id="chatroom">
		<div id="sidebar">
			<h2>Members</h2>
			<ul id="members"></ul>
		</div>
		<div id="keyboard">
			<input type="text">
		</div>
		<div id="messages"></div>
	</div>
		
  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mad_chatter-0.2.4 templates/web/index.html
mad_chatter-0.2.3 templates/web/index.html