Initial commit
[app-web-comstock.git] / tmpl / index.html
1 <!DOCTYPE html>
2 <title>Comstock</title>
3 <meta charset="utf-8">
4
5 <style>
6 ul {
7 display: block;
8 }
9
10 li {
11 display: inline-block;
12 list-item-style: none;
13 }
14
15 li::after {
16 content: ", ";
17 }
18 </style>
19
20 <div id="comstock_nav">
21 <ul><li><a href="#">Item</a></li></ul>
22 </div>
23
24 <div id="book_div">
25 <form action="/book" method="POST">
26 <input type="hidden" name="item">
27 <label>Name:<br> <input type="text" name="name"></label><br>
28 <label>Start date:<br> <input type="date" name="begin" placeholder="yyyy/mm/dd"></label><br>
29 <label>Start hour:<br> <select name="begin_hour"><option>1</option></select></label><br>
30 <label>End date:<br> <input type="date" name="end" placeholder="yyyy/mm/dd"></label><br>
31 <label>End hour:<br> <select name="end_hour"><option>1</option></select></label><br>
32 <input type="submit" value="Book">
33 </div>
This page took 0.020901 seconds and 4 git commands to generate.