1st draft for Pocket import via API

This commit is contained in:
Nicolas Lœuillet
2015-10-20 13:58:13 +02:00
committed by Jeremy Benoist
parent 10b40f85d6
commit 1f4408de9e
9 changed files with 219 additions and 34 deletions

View File

@ -0,0 +1,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('authpocket') }}">
<input type="submit" value="Connect to Pocket" />
</form>
</div>
</div>
</div>
{% endblock %}