forked from wallabag/wallabag
41 lines
2.8 KiB
Twig
41 lines
2.8 KiB
Twig
{% extends "layout.twig" %}
|
|
|
|
{% block title %}{% trans "config" %}{% endblock %}
|
|
{% block menu %}
|
|
<ul id="links">
|
|
<li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li>
|
|
<li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li>
|
|
<li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li>
|
|
<li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li>
|
|
<li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li>
|
|
</ul>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="content">
|
|
<h2>Bookmarklet</h2>
|
|
<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>
|
|
<p>Drag & drop this link to your bookmarks bar and have fun with poche.</p>
|
|
<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>
|
|
|
|
<h2>Password</h2>
|
|
<form method="post" action="?config" name="loginform">
|
|
<fieldset class="w500p">
|
|
<div class="row">
|
|
<label class="col w150p" for="password">New password</label>
|
|
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
|
|
</div>
|
|
<div class="row">
|
|
<label class="col w150p" for="password_repeat">Repeat your new password</label>
|
|
<input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3">
|
|
</div>
|
|
<div class="row mts txtcenter">
|
|
<button class="bouton" type="submit" tabindex="4">Update</button>
|
|
</div>
|
|
</fieldset>
|
|
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
|
|
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
|
|
</form>
|
|
<h2>Export</h2>
|
|
<p><a href="?view=export" target="_blank">Click here</a> to export your poche datas.</p>
|
|
</div>
|
|
{% endblock %} |