wallabag/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig

19 lines
835 B
Twig
Raw Normal View History

2015-10-20 13:58:13 +02:00
{% extends "WallabagCoreBundle::layout.html.twig" %}
{% block title %}{% trans %}Import > Pocket{% endtrans %}{% endblock %}
2015-10-20 13:58:13 +02:00
{% block content %}
<div class="row">
<div class="col s12">
<div class="card-panel settings">
2016-01-06 06:34:57 +01:00
<blockquote>{{ import.description|trans }}</blockquote>
<p>{% trans %}You can import your data from your Pocket account. You just have to click on the below button and authorize the application to connect to getpocket.com.{% endtrans %}</p>
<form method="post" action="{{ path('import_pocket_auth') }}">
<button class="btn waves-effect waves-light" type="submit" name="action">
2016-01-05 22:38:09 +01:00
{% trans %}Connect to Pocket and import data{% endtrans %}
</button>
2015-10-20 13:58:13 +02:00
</form>
</div>
</div>
</div>
{% endblock %}