aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig
blob: df64e472c06bd01e5b80ef63f67657889f1f7102 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "WallabagCoreBundle::layout.html.twig" %}
{% block title %}{% trans %}import{% endtrans %}{% endblock %}

{% block content %}

<div class="row">
    <div class="col s12">
        <div class="card-panel settings">
            {% 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 %}
            <form method="post" action="{{ path('pocket_auth') }}">
                <input type="submit" value="Connect to Pocket and import data" />
            </form>
        </div>
    </div>
</div>
{% endblock %}