4b246d450ca51d4a55fbe3e0376e4720b28a251f
[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     <div class="footer">
21         <input id="back" onclick="onPrev();" value="Back" type="button"/>
22         <input id="forward" onclick="onNext();" value="Forward" type="button"/>
23       Showing <span id="first">0</span> through <span id="last">0</span> out of <span id="count">0</span> matching books.
24     </div>
25
26     <div id="books">(No books found)</div>
27
28     <script src="lib.js"></script>
29   </body>
30 </html>