<!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">
<head>
<title>Booki</title>
<link type="text/css" href="/site_media/css/booki.css" rel="Stylesheet" />
<link type="text/css" href="/site_media/js/jquery/theme/ui.all.css" rel="Stylesheet" />
<script type="text/javascript" src="/site_media/js/jquery/jquery-1.3.1.js"></script>
<script type="text/javascript" src="/site_media/js/jquery/jquery-ui-personalized-1.6rc6.js"></script>
<script type="text/javascript" src="/site_media/js/jquery.json-1.3.js"></script>
<script type="text/javascript" src="/site_media/js/booki.js"></script>
</head>
<body>
<div id="page-container"> <!-- Start of Page-Container -->
<!-- top bar + drop shadow -->
<div class="topbar shadow">
<a href="/"><img alt="Booki logo" src="/site_media/images/booki_logo_topleft.png" border="0"></a>
<div id="login">Login / Register</div>
</div>
<!-- End top bar --------- -->
<!-- nav box + drop shadow -->
<div class="navbox shadow">
<ul>
<li><a href="/">About</a></li>
<li><a href="/list-books">Books</a></li>
<li><a href="/list-groups">Groups</a></li>
<li><a href="/list-people">People</a></li>
</ul>
</div>
<!-- End nav box -------- -->
<div id="content">
<!-- Begin content section and drop shadow -->
<div class="content-container shadow">
<!-- Begin SIGNIN FORM -->
<div id="signin_form">
<div style="background-color: #f8e1a4;font-size: 12px; padding: 20px">
<h2>Sign in</h2>
<form method="POST" action="/accounts/signin/" id="loginform">
USERNAME<br/>
<input type="text" name="username"/><br/>
PASSWORD<br/>
<input type="password" name="password"/><br/>
<br/>
<button>Sign in</button>
</form>
</div>
</div>
<!-- End SIGNIN FORM -->
<!-- Begin REGISTER FORM -->
<div id="register_form">
<div style="background-color: #f8e1a4;font-size: 12px; padding: 20px;">
<h2>Register</h2>
<form method="POST" action="/accounts/register/">
USERNAME<br/>
<input type="text" name="username" value=""/><br/>
E-MAIL<br/>
<input type="text" name="email" value=""/><br/>
PASSWORD (6 characters at least)<br/>
<input type="password" name="password"/><br/>
PASSWORD confirmation<br/>
<input type="password" name="password2"/><br/>
FULL NAME<br/>
<input type="text" name="fullname" value=""/><br/>
Your real name is compulsory for reasons of copyright attribution on books you create and contribute to.
<br/>
<button>Register</button>
</form>
</div>
</div>
<!-- End REGISTER FORM -->
<div id="intro">
<p><b>Welcome to Booki Alpha 1.0.</b></p>
<p>
Booki facilitates the collaborative production of books through simple
and effective writing and book management tools. With the exception of
Booki, there is no software available for this practice. Some have tried
wiki and CMS software and find its not easy. Wikis are for the
asynchronous development of unstructured web content. CMS are for the
management of web-structured online content. Booki is something new.
</p><p>
The Booki interface is designed around the authors and their needs to
write, to discuss their views, to seek assistance with partner writers,
to translate or reuse content and to publish completed works. While
rapid development of content is the core focus of Booki, using a
platform like this you can take the time to write a book by yourself as
well as collaborate to produce high quality content very quickly.
</p><p>
Sign up and have a look around!
</p>
<p>Software developers might like to check the PyPi release page for <a href="http://pypi.python.org/pypi/booki/">Booki</a> </p>
</div>
<script>
$(document).ready(function() {
$('#signin_form').hide();
$('#register_form').hide();
$('#login').click( function() {
$('#signin_form').toggle();
$('#register_form').toggle();
$('#intro').toggle();
});
});
</script>
</div>
</div> </div> </div>
<!-- End content section -->
<!-- DEV TOOLS -->
<div id="debug">
<a class="debug" href="javascript:void(0)">Debug</a>
</div>
<!-- End DEV TOOLS -->
</div> <!-- End of Page-Container -->
</body>
</html>