aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-09-13 21:07:27 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-09-13 21:07:27 +0200
commitb004a236ba0cc96bf530801a55cdddf9ec809d13 (patch)
tree9cd57b48d5a4c5ec7952ba02736c8209f1c95c69 /src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig
parent4d5fd9be812825c480589cdcfcec281ffb5aa66a (diff)
parent1a5f7e2d88284419654057fda71e2b0be9b5439a (diff)
downloadwallabag-b004a236ba0cc96bf530801a55cdddf9ec809d13.tar.gz
wallabag-b004a236ba0cc96bf530801a55cdddf9ec809d13.tar.zst
wallabag-b004a236ba0cc96bf530801a55cdddf9ec809d13.zip
Merge pull request #1401 from wallabag/v2-baggy-themes
Cleanup baggy
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig
new file mode 100644
index 00000000..d182d552
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/new_form.html.twig
@@ -0,0 +1,15 @@
1<form name="entry" method="post" action="{{ path('new_entry')}}">
2
3 {% if form_errors(form) %}
4 <span class="black-text">{{ form_errors(form) }}</span>
5 {% endif %}
6
7 {% if form_errors(form.url) %}
8 <span class="black-text">{{ form_errors(form.url) }}</span>
9 {% endif %}
10
11 {{ form_label(form.url) }}
12 {{ form_widget(form.url) }}
13
14 <div class="hidden">{{ form_rest(form) }}</div>
15</form>