Skip to content

Commit

Permalink
pkp/pkp-lib#4684 Added separate search form for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkbulecount2 authored and NateWr committed Aug 13, 2019
1 parent 27fd57a commit 5bbecee
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions templates/frontend/components/searchForm_mobile.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{**
* templates/frontend/components/searchForm_mobile.tpl
*
* Copyright (c) 2014-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @brief Simple display of a search form with just text input and search button
*
* @uses $searchQuery string Previously input search query
*}
{if !$currentJournal || $currentJournal->getData('publishingMode') != $smarty.const.PUBLISHING_MODE_NONE}
<form class="pkp_search" action="{url page="search" op="search"}" method="post" role="search">
{csrf}
{block name=searchQuerySimple}
<div class="pkp_search_mobile">
<input name="query" value="{$searchQuery|escape}" type="text" aria-label="{translate|escape key="common.searchQuery"}">
{/block}
<button type="submit">
{translate key="common.search"}
</button>
</div>

<div class="search_controls" aria-hidden="true">
<a href="{url page="search" op="search"}" class="headerSearchPrompt search_prompt" aria-hidden="true">
{translate key="common.search"}
</a>
<a href="#" class="search_cancel headerSearchCancel" aria-hidden="true"></a>
<span class="search_loading" aria-hidden="true"></span>
</div>
</form>
{/if}

0 comments on commit 5bbecee

Please sign in to comment.