aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/search_form.html.twig
blob: bba6adb1e0a388008f4d9f173c0cee968882cf58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<form name="search" method="GET" action="{{ path('search')}}">
    {% if form_errors(form) %}
        <span class="black-text">{{ form_errors(form) }}</span>
    {% endif %}

    {% if form_errors(form.term) %}
        <span class="black-text">{{ form_errors(form.term) }}</span>
    {% endif %}

    {{ form_widget(form.term, { 'attr': {'autocomplete': 'off', 'placeholder': 'entry.search.placeholder'} }) }}

    {{ form_rest(form) }}
</form>