aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
blob: fda53e5b0876387d176f75557013354d123bcf7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<form name="entry" method="post" action="{{ path('new_entry')}}">

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

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

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

    <div class="hidden">{{ form_rest(form) }}</div>
</form>