mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-19 15:41:09 +00:00
17 lines
615 B
Twig
17 lines
615 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('authpocket') }}">
|
||
|
<input type="submit" value="Connect to Pocket" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|