]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tpl/config.twig
#100: welcome to you, instapaper users
[github/wallabag/wallabag.git] / tpl / config.twig
CommitLineData
2b840e0c
NL
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 %}
016989b7 14 <div id="content">
4f5b44bd 15 <h2>{% trans "Bookmarklet" %}</h2>
c765c367 16 <p>{% trans "Thanks to the bookmarklet, you will be able to easily add a link to your poche." %} {% trans "Have a look to this documentation:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a>.</p>
4f5b44bd 17 <p>{% trans "Drag & drop this link to your bookmarks bar and have fun with poche." %}</p>
eb1af592 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);}">{% trans "poche it!" %}</a></p>
da368cc8 19
4f5b44bd 20 <h2>{% trans "Change your password" %}</h2>
da368cc8
NL
21 <form method="post" action="?config" name="loginform">
22 <fieldset class="w500p">
23 <div class="row">
4f5b44bd
NL
24 <label class="col w150p" for="password">{% trans "New password" %}</label>
25 <input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2">
da368cc8
NL
26 </div>
27 <div class="row">
4f5b44bd
NL
28 <label class="col w150p" for="password_repeat">{% trans "Repeat your new password" %}</label>
29 <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="{% trans "Password" %}" tabindex="3">
da368cc8
NL
30 </div>
31 <div class="row mts txtcenter">
4f5b44bd 32 <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button>
da368cc8
NL
33 </div>
34 </fieldset>
4f5b44bd
NL
35 <input type="hidden" name="returnurl" value="{{ referer }}">
36 <input type="hidden" name="token" value="{{ token }}">
da368cc8 37 </form>
c765c367
NL
38
39 <h2>{% trans "Import" %}</h2>
40 <p>{% trans "Please execute the import script locally, it can take a very long time." %}</p>
41 <p>{% trans "More infos in the official doc:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a></p>
42 <p><ul>
63c35580
NL
43 <li><a href="./?import&from=pocket">{% trans "import from Pocket" %}</a> (you must have a "ril_export.html" file on your server)</li>
44 <li><a href="./?import&from=readability">{% trans "import from Readability" %}</a> (you must have a "readability" file on your server)</li>
a62788c6 45 <li><a href="./?import&from=instapaper">{% trans "import from Instapaper" %}</a> (you must have a "instapaper-export.html" file on your server)</li>
c765c367
NL
46 </ul></p>
47
4f5b44bd 48 <h2>{% trans "Export your poche datas" %}</h2>
63c35580 49 <p><a href="./?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your poche datas." %}</p>
2b840e0c
NL
50 </div>
51{% endblock %}