Bug 30952: Move search bar below navbar and reduce navbar height
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / acquisitions-search.inc
1 <!-- Begin Acquisitions Resident Search Box -->
2
3 <div id="header_search">
4     <div id="supplier_search" class="residentsearch">
5         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
6             <span class="form-content">
7                 <input type="text" name="supplier" id="supplier" class="head-searchbox form-control" placeholder="Search vendors" />
8             </span>
9             <button type="submit"><i class="fa fa-arrow-right"></i></button>
10         </form>
11     </div>
12
13     <div id="orders_search" class="residentsearch">
14         <form action="/cgi-bin/koha/acqui/histsearch.pl" method="post">
15             <span class="form-content">
16                 <input type="text" id="title" class="form-control" placeholder="Title" name="title" size="13" value="[% title | html %]" />
17                 <input type="text" id="searchsupplier" class="form-control" placeholder="Vendor" name="name" size="13" value="[% name | html %]" />
18                 <button type="button" class="form-extra-content-toggle"><i class="fa fa-sliders"></i></button>
19                 <input type="hidden" id="do_search" name="do_search" value="do" />
20             </span>
21             <button type="submit"><i class="fa fa-arrow-right"></i></button>
22
23             <div class="form-extra-content">
24                 <div>
25                     <label for="basket" class="control-label">Basket</label>
26                     <input type="text" class="form-control" placeholder="Basket" name="basket" id="basket" />
27                 </div>
28                 <div>
29                     <label for="booksellerinvoicenumber" class="control-label">Basket</label>
30                     <input type="text" class="form-control" placeholder="Invoice number" name="booksellerinvoicenumber" id="booksellerinvoicenumber" />
31                 </div>
32             </div>
33         </form>
34     </div>
35
36     <ul>
37         <li><a title="Vendor search" href="#supplier_search"><i class="fa fa-upload"></i> Vendor search</a></li>
38         <li><a title="Orders search" href="#orders_search"><i class="fa fa-download"></i> Orders search</a></li>
39     </ul>
40 </div><!-- /header_search -->
41
42 <!-- End Main page Resident Search Box -->