aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig
blob: 8c129068103eae45f79d4f723585d2895fd2d594 (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_label(form.url) }}
    {{ form_widget(form.url, { 'attr': {'autocomplete': 'off', 'placeholder': 'entry.new.placeholder'} }) }}

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