diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 08:57:35 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-03 08:57:35 +0200 |
commit | 2b840e0cfb63a453bea67a98541f3df9c273c5f5 (patch) | |
tree | 8c5aa51ba6481f29f9734373d6abd55917d1a671 /tpl/config.twig | |
parent | 8cbb2a88024969f7efd90f8053f3b0805fa2f8fa (diff) | |
download | wallabag-2b840e0cfb63a453bea67a98541f3df9c273c5f5.tar.gz wallabag-2b840e0cfb63a453bea67a98541f3df9c273c5f5.tar.zst wallabag-2b840e0cfb63a453bea67a98541f3df9c273c5f5.zip |
twig implementation
Diffstat (limited to 'tpl/config.twig')
-rw-r--r-- | tpl/config.twig | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tpl/config.twig b/tpl/config.twig new file mode 100644 index 00000000..10c481de --- /dev/null +++ b/tpl/config.twig | |||
@@ -0,0 +1,41 @@ | |||
1 | {% extends "layout.twig" %} | ||
2 | |||
3 | {% block title %}{% trans "config" %}{% endblock %} | ||
4 | {% block menu %} | ||
5 | <ul id="links"> | ||
6 | <li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li> | ||
7 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | ||
8 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | ||
9 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | ||
10 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | ||
11 | </ul> | ||
12 | {% endblock %} | ||
13 | {% block content %} | ||
14 | <div id="content"> | ||
15 | <h2>Bookmarklet</h2> | ||
16 | <p>Thanks to the bookmarklet, you will be able to easily add a link to your poche. If you don't know how use a bookmarklet, <a href="http://support.mozilla.org/en-US/kb/bookmarklets-perform-common-web-page-tasks">have a look here</a>.</p> | ||
17 | <p>Drag & drop this link to your bookmarks bar and have fun with poche.</p> | ||
18 | <p><a ondragend="this.click();" style="cursor: move; border: 1px dashed grey; background: white;" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@inthepoche.com']){top['bookmarklet-url@inthepoche.com'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{$poche_url}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">poche it !</a></p> | ||
19 | |||
20 | <h2>Password</h2> | ||
21 | <form method="post" action="?config" name="loginform"> | ||
22 | <fieldset class="w500p"> | ||
23 | <div class="row"> | ||
24 | <label class="col w150p" for="password">New password</label> | ||
25 | <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2"> | ||
26 | </div> | ||
27 | <div class="row"> | ||
28 | <label class="col w150p" for="password_repeat">Repeat your new password</label> | ||
29 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3"> | ||
30 | </div> | ||
31 | <div class="row mts txtcenter"> | ||
32 | <button class="bouton" type="submit" tabindex="4">Update</button> | ||
33 | </div> | ||
34 | </fieldset> | ||
35 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
36 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
37 | </form> | ||
38 | <h2>Export</h2> | ||
39 | <p><a href="?view=export" target="_blank">Click here</a> to export your poche datas.</p> | ||
40 | </div> | ||
41 | {% endblock %} \ No newline at end of file | ||