diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 19:26:54 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 19:26:54 +0200 |
commit | 4f5b44bd3bd490309eb2ba7b44df4769816ba729 (patch) | |
tree | 6cefe170dfe0a5a361cb1e2d1fc4d580a3316d02 /tpl/login.twig | |
parent | 2b840e0cfb63a453bea67a98541f3df9c273c5f5 (diff) | |
download | wallabag-4f5b44bd3bd490309eb2ba7b44df4769816ba729.tar.gz wallabag-4f5b44bd3bd490309eb2ba7b44df4769816ba729.tar.zst wallabag-4f5b44bd3bd490309eb2ba7b44df4769816ba729.zip |
twig implementation
Diffstat (limited to 'tpl/login.twig')
-rw-r--r-- | tpl/login.twig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tpl/login.twig b/tpl/login.twig index d1080530..fcb9b4d6 100644 --- a/tpl/login.twig +++ b/tpl/login.twig | |||
@@ -1,11 +1,11 @@ | |||
1 | {% extends "layout.twig" %} | 1 | {% extends "layout.twig" %} |
2 | 2 | ||
3 | {% block title %}{% trans "login to your poche" %}{% endblock %} | 3 | {% block title %}{% trans "login to your poche" %}{% endblock %} |
4 | {% block messages %} | 4 | {% block notices %} |
5 | <div class="messages"> | 5 | <div class="messages"> |
6 | <ul> | 6 | <ul> |
7 | {% for error in errors %} | 7 | {% for notice in notices %} |
8 | <li>{{ error.value|e }}</li> | 8 | <li>{{ notice.value|e }}</li> |
9 | {% endfor %} | 9 | {% endfor %} |
10 | </ul> | 10 | </ul> |
11 | </div> | 11 | </div> |
@@ -28,7 +28,7 @@ | |||
28 | <label class="col w150p">{% trans "Stay signed in" %}</label> | 28 | <label class="col w150p">{% trans "Stay signed in" %}</label> |
29 | <div class="col"> | 29 | <div class="col"> |
30 | <input type="checkbox" name="longlastingsession" tabindex="3"> | 30 | <input type="checkbox" name="longlastingsession" tabindex="3"> |
31 | <small class="inbl">(Do not check on public computers)</small> | 31 | <small class="inbl">{% trans "(Do not check on public computers)" %}</small> |
32 | </div> | 32 | </div> |
33 | </div> | 33 | </div> |
34 | <div class="row mts txtcenter"> | 34 | <div class="row mts txtcenter"> |