wallabag/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig
Jeremy Benoist 0aa344dc24 Update url & service name
Prefix ur with service namel: [service]_[route name]
Add comment in Interface
2016-01-02 23:27:41 +01:00

17 lines
632 B
Twig

{% 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 %}