Koha/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc
Julian Maurice 32068a8b15
Bug 30952: Header search - move tabs to the right (and other tweaks)
Make the search bar take the whole page width, with inputs at the center
taking all the available space
Add a separator between inputs when there are more than one

Issue #24

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-12 16:14:31 -03:00

20 lines
962 B
HTML

[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
<div id="circ_search" class="residentsearch">
<form action="/cgi-bin/koha/circ/circulation.pl" id="patronsearch" method="post">
<span class="form-title">
<label class="control-label">Check out</label>
</span>
<span class="form-content">
<input autocomplete="off" id="findborrower" name="findborrower" class="head-searchbox form-control" type="text" placeholder="Enter patron card number or partial name" size="40"/>
[% IF ( stickyduedate ) %]
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
[% END %]
</span>
<button type="submit"><i class="fa fa-arrow-right"></i></button>
</form>
</div>
[% END %]