aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/edit_bookmark.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 07:09:46 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 07:09:46 +0200
commitea622ec87dc4e9e8f80f8792704037b819076c4a (patch)
tree10d6235d4cf10da1a3b698f12a94a81db7254f43 /src/web/templates/edit_bookmark.html
parentUpgrade modules. (diff)
downloadnewspipe-ea622ec87dc4e9e8f80f8792704037b819076c4a.tar.gz
newspipe-ea622ec87dc4e9e8f80f8792704037b819076c4a.tar.bz2
newspipe-ea622ec87dc4e9e8f80f8792704037b819076c4a.zip
Improved layout.
Diffstat (limited to 'src/web/templates/edit_bookmark.html')
-rw-r--r--src/web/templates/edit_bookmark.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/web/templates/edit_bookmark.html b/src/web/templates/edit_bookmark.html
index 1c6f0c01..b054e22f 100644
--- a/src/web/templates/edit_bookmark.html
+++ b/src/web/templates/edit_bookmark.html
@@ -66,12 +66,16 @@
<div class="row">
<div class="col-md-6 pull-right">
<p>{{ _('You can add a bookmark with a bookmarklet. Drag the following button to your browser bookmarks.') }}</p>
- {{ _('<a class="btn btn-default" href="%(bookmarklet)s" rel="bookmark">Manage your bookmarks using Newspipe</a>', bookmarklet='javascript:window.location="%s?href="+encodeURIComponent(document.location)' % url_for('bookmark.bookmarklet', _external=True)) }}
+ {{ _('<a class="btn btn-default" href="%(bookmarklet)s" rel="bookmark">Bookmark this page using Newspipe</a>', bookmarklet='javascript:window.location="%s?href="+encodeURIComponent(document.location)' % url_for('bookmark.bookmarklet', _external=True)) }}
</div>
<div class="col-md-6">
<form action="{{ url_for('bookmark.import_pinboard') }}" method="post" id="formImportPinboard" enctype="multipart/form-data">
- <span class="btn btn-default btn-file">{{ _('Import bookmarks from pinboard.in') }} (<span class="text-info">*.json</span>)<input type="file" name="jsonfile" /></span>
- <button class="btn btn-default" type="submit">OK</button>
+ <p>{{ _('Import bookmarks from Pinboard') }} (<span class="text-info">*.json</span>)</p>
+ <span>
+ <input type="file" name="jsonfile" />
+ <br />
+ <button class="btn btn-default btn-default" type="submit">OK</button>
+ </span>
</form>
</div>
</div>
bgstack15