diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-24 23:51:59 -0700 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-24 23:51:59 -0700 |
commit | cd8a3441561fa63b9da1b705c4b28dee787f79b0 (patch) | |
tree | e21417394aac2f23060506e120601d74b19ecd29 /themes/default/login.twig | |
parent | 8e76eaad19c32fd9993fcd4c66de80394b55fbe2 (diff) | |
parent | 6ae804853f6f2e10d394b6abfb977b7a251ee7e4 (diff) | |
download | wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.tar.gz wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.tar.zst wallabag-cd8a3441561fa63b9da1b705c4b28dee787f79b0.zip |
Merge pull request #289 from inthepoche/dev
1.1.0
Diffstat (limited to 'themes/default/login.twig')
-rw-r--r-- | themes/default/login.twig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/default/login.twig b/themes/default/login.twig index 0ae130bc..2e48052b 100644 --- a/themes/default/login.twig +++ b/themes/default/login.twig | |||
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | {% block title %}{% trans "login to your poche" %}{% endblock %} | 3 | {% block title %}{% trans "login to your poche" %}{% endblock %} |
4 | {% block content %} | 4 | {% block content %} |
5 | {% if http_auth == 0 %} | ||
5 | <form method="post" action="?login" name="loginform"> | 6 | <form method="post" action="?login" name="loginform"> |
6 | <fieldset class="w500p center"> | 7 | <fieldset class="w500p center"> |
7 | <h2 class="mbs txtcenter">{% trans "login to your poche" %}</h2> | 8 | <h2 class="mbs txtcenter">{% trans "login to your poche" %}</h2> |
@@ -29,4 +30,5 @@ | |||
29 | <input type="hidden" name="returnurl" value="{{ referer }}"> | 30 | <input type="hidden" name="returnurl" value="{{ referer }}"> |
30 | <input type="hidden" name="token" value="{{ token }}"> | 31 | <input type="hidden" name="token" value="{{ token }}"> |
31 | </form> | 32 | </form> |
32 | {% endblock %} \ No newline at end of file | 33 | {% endif %} |
34 | {% endblock %} | ||