mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
15 lines
716 B
Twig
15 lines
716 B
Twig
<form class="input-field nav-panel-item nav-panel-add" style="display: none" name="entry" method="post" action="{{ path('new_entry') }}">
|
|
{% if form_errors(form) %}
|
|
<span class="black-text">{{ form_errors(form) }}</span>
|
|
{% endif %}
|
|
<button type="submit" class="nav-form-button" aria-label="add"><i class="material-icons add" aria-hidden="true"></i></button>
|
|
|
|
{% if form_errors(form.url) %}
|
|
<span class="black-text">{{ form_errors(form.url) }}</span>
|
|
{% endif %}
|
|
|
|
{{ form_widget(form.url, {'attr': {'autocomplete': 'off', 'placeholder': 'entry.new.placeholder'}}) }}
|
|
<i class="material-icons close" aria-label="clear" role="button"></i>
|
|
|
|
{{ form_rest(form) }}
|
|
</form>
|