aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
blob: 6e552560ec14c2a491e08bcd6c3b9b071ddc5cc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<form name="tag" method="post" action="{{ path('new_tag', { 'entry': entry.id })}}">
    {% if form_errors(form) %}
        <span class="black-text">{{ form_errors(form) }}</span>
    {% endif %}

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

    {{ form_widget(form.label, { 'attr': {'autocomplete': 'off'} }) }}

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