File: D:/web/groundscrewcentre/inc-template-search.asp
<%
' --- START OF SEARCH TEMPLATES --- '
' (SS,17/1/13) added ending / to input tag of cbsubcat
' (SS,13/8/14) bootstrap version
' (SS,1/3/14) replaced form tags with div (because there's already the frmSearch form outside this,
' had to adjust padding and margin and add margin-top of 10px to make it behave as before
' (SS,15/10/19) modified for Bootstrap 4, changed glyphicon to fa
Sub ShowSearchMain(ASearchDefault, ASelectComboHTML)
%>
<!-- START OF SEARCH -->
<div class="form-row mt-3 ml-lg-3">
<div class="form-group col-md-8 col-sm-8 col-xs-8">
<input type="hidden" name="cbsubcat" value="">
<input type="text" class="form-control" placeholder="Search..." name="search" id="search">
</div>
<div class="form-group col-md-4 col-sm-4 col-xs-4">
<button class="btn btn-secondary" type="button" onclick="itp_search()"><i class="fa fa-search"></i></button>
</div>
</div>
<%
End Sub
' --- END OF SEARCH TEMPLATES --- '
ShowSearch
%>