mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
17 lines
804 B
Twig
17 lines
804 B
Twig
<form class="input-field nav-panel-item nav-panel-search" style="display: none" name="search" method="GET" action="{{ path('search') }}">
|
|
{% 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>
|
|
|
|
{% if form_errors(form.term) %}
|
|
<span class="black-text">{{ form_errors(form.term) }}</span>
|
|
{% endif %}
|
|
|
|
<input type="hidden" name="currentRoute" value="{{ currentRoute }}" />
|
|
|
|
{{ form_widget(form.term, {'attr': {'autocomplete': 'off', 'placeholder': 'entry.search.placeholder'}}) }}
|
|
<i class="material-icons close" aria-label="clear" role="button"></i>
|
|
|
|
{{ form_rest(form) }}
|
|
</form>
|