]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/new_form.html.twig
More translations
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Tag / new_form.html.twig
1 <form name="tag" method="post" action="{{ path('new_tag', { 'entry': entry.id })}}">
2 {% if form_errors(form) %}
3 <span class="black-text">{{ form_errors(form) }}</span>
4 {% endif %}
5
6 {% if form_errors(form.label) %}
7 <span class="black-text">{{ form_errors(form.label) }}</span>
8 {% endif %}
9
10 {{ form_widget(form.label, { 'attr': {'autocomplete': 'off'} }) }}
11
12 <div class="hidden">{{ form_rest(form) }}</div>
13 </form>