wallabag/src/Wallabag/CoreBundle/Resources/views/Tag/new_form.html.twig

15 lines
537 B
Twig
Raw Normal View History

2022-05-03 21:28:20 +00:00
<form name="tag" method="post" action="{{ path('new_tag', {'entry': entry.id}) }}">
2016-02-12 15:58:30 +00:00
{% if form_errors(form) %}
<span class="black-text">{{ form_errors(form) }}</span>
{% endif %}
2015-08-19 09:46:21 +00:00
2016-02-12 15:58:30 +00:00
{% if form_errors(form.label) %}
<span class="black-text">{{ form_errors(form.label) }}</span>
{% endif %}
2015-08-19 09:46:21 +00:00
2022-05-03 21:28:20 +00:00
{{ form_widget(form.label, {'attr': {'autocomplete': 'off'}}) }}
2015-08-19 09:46:21 +00:00
{{ form_widget(form.add, {'attr': {'class': 'btn waves-effect waves-light hide-on-large-only'}}) }}
{{ form_widget(form._token) }}
2015-08-19 09:46:21 +00:00
</form>