diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2015-10-20 13:58:13 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-01-02 23:24:17 +0100 |
commit | 1f4408de9ed08f3b0fda45a93f1585c80feeb21d (patch) | |
tree | c8e7e05e9db85b331dde2ba5fef35796d8f3439f /src/Wallabag/ImportBundle/Resources | |
parent | 10b40f85d664da2b3ebcfd24d6e7145c9cd90d64 (diff) | |
download | wallabag-1f4408de9ed08f3b0fda45a93f1585c80feeb21d.tar.gz wallabag-1f4408de9ed08f3b0fda45a93f1585c80feeb21d.tar.zst wallabag-1f4408de9ed08f3b0fda45a93f1585c80feeb21d.zip |
1st draft for Pocket import via API
Diffstat (limited to 'src/Wallabag/ImportBundle/Resources')
-rw-r--r-- | src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig b/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig new file mode 100644 index 00000000..d47dd8d5 --- /dev/null +++ b/src/Wallabag/ImportBundle/Resources/views/Pocket/index.html.twig | |||
@@ -0,0 +1,16 @@ | |||
1 | {% extends "WallabagCoreBundle::layout.html.twig" %} | ||
2 | {% block title %}{% trans %}import{% endtrans %}{% endblock %} | ||
3 | |||
4 | {% block content %} | ||
5 | |||
6 | <div class="row"> | ||
7 | <div class="col s12"> | ||
8 | <div class="card-panel settings"> | ||
9 | {% 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 %} | ||
10 | <form method="post" action="{{ path('authpocket') }}"> | ||
11 | <input type="submit" value="Connect to Pocket" /> | ||
12 | </form> | ||
13 | </div> | ||
14 | </div> | ||
15 | </div> | ||
16 | {% endblock %} | ||