Sha256: 6a77a5dd7ff95936fab854a638717716357b5c548e2365ac62064210c4cab27d

Contents?: true

Size: 942 Bytes

Versions: 5

Compression:

Stored size: 942 Bytes

Contents

<!DOCTYPE html>
<html>
  <head>
	<title>Mad Chatter</title>
	<link rel="stylesheet" href="stylesheets/reset.css">
	<link rel="stylesheet" href="stylesheets/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='javascript.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

5 entries across 5 versions & 1 rubygems

Version Path
mad_chatter-0.1.3 templates/web/index.html
mad_chatter-0.1.2 templates/web/index.html
mad_chatter-0.1.1 templates/web/index.html
mad_chatter-0.1.0 templates/web/index.html
mad_chatter-0.0.7 templates/index.html