Search Form HTML
A basic search form depends on 2 things:
- The 'action' attribute of the <form> tag
- The 'name' attribute of the search term text box
Form Action
The form action needs to be "/search".
Search Term Text Box Name
The search term text box name must be "searchTerm".
Example Form
Below is an example form of the minimum form required in order to search.
<form action="/search" method="post">
<input type="text" name="searchTerm" />
<input type="submit" name="submit" value="Search" />
</form>
Advanced Search Form
You can also specify a search segment, app or app instance to limit the search to. See Searching Apps & App Instances and Search Segments for more information.
