diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2015-10-05 22:45:44 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2015-10-05 22:45:44 +0200 |
commit | d30262154a9f335d1ef9260dfae55bfa007a6e8f (patch) | |
tree | 2b30948124763670e70a0d44fe9fb0b2ce9fb6d1 | |
parent | ec3ce598f6423fcccd88a4fdd77f817c50bc5ab6 (diff) | |
download | wallabag-d30262154a9f335d1ef9260dfae55bfa007a6e8f.tar.gz wallabag-d30262154a9f335d1ef9260dfae55bfa007a6e8f.tar.zst wallabag-d30262154a9f335d1ef9260dfae55bfa007a6e8f.zip |
last changes for baggy theme
-rw-r--r-- | src/Wallabag/UserBundle/Resources/views/themes/baggy/Security/login.html.twig | 11 | ||||
-rw-r--r-- | src/Wallabag/UserBundle/Resources/views/themes/baggy/layout.html.twig | 16 |
2 files changed, 18 insertions, 9 deletions
diff --git a/src/Wallabag/UserBundle/Resources/views/themes/baggy/Security/login.html.twig b/src/Wallabag/UserBundle/Resources/views/themes/baggy/Security/login.html.twig index 0e7bba0f..d52c3662 100644 --- a/src/Wallabag/UserBundle/Resources/views/themes/baggy/Security/login.html.twig +++ b/src/Wallabag/UserBundle/Resources/views/themes/baggy/Security/login.html.twig | |||
@@ -1,13 +1,6 @@ | |||
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} | 1 | {% extends "FOSUserBundle::layout.html.twig" %} |
2 | 2 | ||
3 | {% block title %}{% trans %}login to your wallabag{% endtrans %}{% endblock %} | 3 | {% block fos_user_content %} |
4 | |||
5 | {% block body_class %}login{% endblock %} | ||
6 | |||
7 | {% block menu %}{% endblock %} | ||
8 | {% block messages %}{% endblock %} | ||
9 | |||
10 | {% block content %} | ||
11 | <form action="{{ path('fos_user_security_check') }}" method="post" name="loginform"> | 4 | <form action="{{ path('fos_user_security_check') }}" method="post" name="loginform"> |
12 | <fieldset class="w500p center"> | 5 | <fieldset class="w500p center"> |
13 | <h2 class="mbs txtcenter">{% trans %}Login to wallabag{% endtrans %}</h2> | 6 | <h2 class="mbs txtcenter">{% trans %}Login to wallabag{% endtrans %}</h2> |
diff --git a/src/Wallabag/UserBundle/Resources/views/themes/baggy/layout.html.twig b/src/Wallabag/UserBundle/Resources/views/themes/baggy/layout.html.twig new file mode 100644 index 00000000..ff5b6583 --- /dev/null +++ b/src/Wallabag/UserBundle/Resources/views/themes/baggy/layout.html.twig | |||
@@ -0,0 +1,16 @@ | |||
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} | ||
2 | |||
3 | {% block title %}Welcome on wallabag!{% endblock %} | ||
4 | |||
5 | {% block body_class %}login{% endblock %} | ||
6 | |||
7 | {% block menu %}{% endblock %} | ||
8 | {% block messages %}{% endblock %} | ||
9 | |||
10 | {% block content %} | ||
11 | {% block fos_user_content %} | ||
12 | {% endblock fos_user_content %} | ||
13 | {% endblock %} | ||
14 | |||
15 | {% block footer %} | ||
16 | {% endblock %} | ||