Add basic html/js to search for and display some books.
[quanweb.git] / app / index.html
1 <html>
2   <head>
3     <title>eBook Library</title>
4     <link href="lib.css" rel="stylesheet" type="text/css"/>
5     <meta charset="utf-8"/>
6   </head>
7   
8   <body> 
9     <table class="header">
10       <tr><td class="box">&nbsp;</td><td class="title">eBook Library</td></tr>
11     </table>
12
13     <form>
14       <input id="search" onclick="onSearch();" type="button" value="Search"/> 
15       Author: <input id="aut" type="text"/> 
16       Title: <input id="tit" type="text"/>
17       Series: <input id="ser" type="text"/>
18     </form>
19
20     <h1>Books</h1>
21
22     <div id="books">(No books found)</div>
23
24     <div class="footer">
25         <input id="back" value="Back" type="button"/>
26         <input id="forward" value="Forward" type="button"/>
27       Showing <span id="first">0</span> through <span id="last">0</span> out of <span id="count">0</span> matching books.
28     </div>
29
30     <script src="lib.js"></script>
31   </body>
32 </html>