mirror of
https://github.com/lammertb/libhttp.git
synced 2025-08-22 08:12:46 +03:00
Initial import - converting from Subversion.
This commit is contained in:
68
examples/html/index.html
Normal file
68
examples/html/index.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
|
||||
<!-- This file is part of the Mongoose project,
|
||||
http://code.google.com/p/mongoose -->
|
||||
<head>
|
||||
<title>Mongoose chat server</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
||||
<link type="text/css" rel="stylesheet" href="style.css"/>
|
||||
<script src="jquery.js"></script>
|
||||
<script src="main.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="header">
|
||||
<div class="rounded infobox help-message">
|
||||
Chat room implemented using
|
||||
<a href="http://code.google.com/p/mongoose" target="_blank">Mongoose</a>
|
||||
embeddable web server.
|
||||
This application was written for educational purposes demonstrating
|
||||
how web interface could be decoupled from the business logic. Not a
|
||||
single line of HTML is generated by the server, instead, server
|
||||
communicates data in JSON format using AJAX calls. Such chat server
|
||||
could be used in your application as a collaboration tool.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="middle">
|
||||
<div><center><span id="error" class="rounded"></span><center></div>
|
||||
|
||||
<div id="menu">
|
||||
<div class="menu-item left-rounded menu-item-selected"
|
||||
name="chat">Chat</div>
|
||||
<div class="menu-item left-rounded" name="settings">Settings</div>
|
||||
</div>
|
||||
|
||||
<div id="content" class="rounded">
|
||||
|
||||
<div id="chat" class="main">
|
||||
<div class="chat-window">
|
||||
<span class="top-rounded chat-title">Main room</span>
|
||||
<div class="bottom-rounded chat-content">
|
||||
<div class="message-list" id="mml">
|
||||
</div>
|
||||
<input type="text" size="40" class="message-input"></input>
|
||||
<span class="help-message">
|
||||
Type your message here and press enter</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="settings" class="hidden main">
|
||||
<div>
|
||||
<span class="top-rounded">Settings</span>
|
||||
<div class="bottom-rounded">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
Copyright © 2004-2010 by Sergey Lyubka
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user