mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-18 03:41:50 +00:00
13 lines
546 B
Plaintext
13 lines
546 B
Plaintext
{{!
|
|
string form-action action attribute of the search form
|
|
string page-title page title of the search page
|
|
string msg-search search text label
|
|
string html-input raw HTML containing the input box of the search box
|
|
string html-button-search raw HTML containing the button of the search box
|
|
}}
|
|
<form action="{{form-action}}" role="search" id="search-form">
|
|
<input type="hidden" name="title" value="{{page-title}}">
|
|
<label class="screen-reader-text" for="search-input">{{msg-search}}</label>
|
|
{{{html-input}}}
|
|
{{{html-button-search}}}
|
|
</form> |