]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
Label replaced by a button on the nav search form
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / Entry / new_form.html.twig
CommitLineData
053b9568 1<form name="entry" method="post" action="{{ path('new_entry')}}">
daa2b7e7
JB
2 {% if form_errors(form) %}
3 <span class="black-text">{{ form_errors(form) }}</span>
4 {% endif %}
f86c2b5f 5 <button type="submit" class="nav-form-button"><i class="material-icons add">add</i></button>
053b9568 6
daa2b7e7
JB
7 {% if form_errors(form.url) %}
8 <span class="black-text">{{ form_errors(form.url) }}</span>
9 {% endif %}
053b9568 10
0d42217e 11 {{ form_widget(form.url, { 'attr': {'autocomplete': 'off', 'placeholder': 'entry.new.placeholder'} }) }}
053b9568 12
0d42217e 13 {{ form_rest(form) }}
053b9568 14</form>