wallabag/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/search_form.html.twig

18 lines
805 B
Twig
Raw Normal View History

<form class="input-field nav-panel-item nav-panel-search" style="display: none" name="search" method="GET" action="{{ path('search')}}">
2016-11-04 22:24:43 +00:00
{% if form_errors(form) %}
<span class="black-text">{{ form_errors(form) }}</span>
{% endif %}
<button type="submit" class="nav-form-button" aria-label="search"><i class="material-icons search" aria-hidden="true"></i></button>
2016-11-04 22:24:43 +00:00
{% if form_errors(form.term) %}
<span class="black-text">{{ form_errors(form.term) }}</span>
{% endif %}
<input type="hidden" name="currentRoute" value="{{ currentRoute }}" />
2016-11-04 22:24:43 +00:00
{{ form_widget(form.term, { 'attr': {'autocomplete': 'off', 'placeholder': 'entry.search.placeholder'} }) }}
<i class="material-icons close" aria-label="clear" role="button"></i>
2016-11-04 22:24:43 +00:00
{{ form_rest(form) }}
</form>