cubicleform.html (862B)
1 <html> 2 <head> 3 <title>HiveDAV - Book Cubicle</title> 4 <link rel="stylesheet" href="/css/index.css"> 5 <link rel="stylesheet" href="/css/style.css"> 6 </head> 7 <body> 8 <nav> 9 <ul> 10 <li><a href="/">Back to calendar</a></li> 11 </ul> 12 </nav> 13 Reserve cubicle for 1 hour 14 <form method="post" enctype="multipart/form-data" action="/book/{{ .Dtstart }}" class="cubicleform"> 15 <label for="dtstart">Date and time:</label><input type="datetime-local" value="{{ .DtstartInput }}" id="dtstart" name="dtstart" /> 16 <label for="mail">Email:</label><input type="email" id="mail" name="mail" /> 17 <label for="mail">Your message:</label><textarea id="msg" name="msg"></textarea> 18 <input type="submit" value="Book me" /> 19 </form> 20 <footer> 21 HiveDAV <a href="https://code.in0rdr.ch/hivedav/refs.html">{{ .Version }}</a> 🍯 22 </footer> 23 </body> 24 </html>