18 lines
670 B
Smarty
18 lines
670 B
Smarty
<form class="search-mini" method="get" action="{$ABS_PATH}">
|
|
<input type="hidden" name="module" value="search" />
|
|
|
|
<div class="input-group">
|
|
<input type="text"
|
|
id="query"
|
|
class="form-control"
|
|
name="query"
|
|
placeholder="{#SEARCH_PLACEHOLDER#}"
|
|
aria-label="{#SEARCH_BUTTON#}"
|
|
value="{$smarty.request.query|default:''|stripslashes|escape}" />
|
|
|
|
<button class="btn btn-primary" type="submit">
|
|
<i class="bi bi-search"></i>
|
|
<span class="d-none d-lg-inline ms-1">{#SEARCH_BUTTON#}</span>
|
|
</button>
|
|
</div>
|
|
</form> |