]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tpl/export.html
Merge pull request #717 from ArthurHoaro/v0.8
[github/shaarli/Shaarli.git] / tpl / export.html
index 938cbe64f520a9e5b99090d9019d3ff931dcdb88..67c3d05fb8a4926260d32f4a5ca09b8f2e9bca4c 100644 (file)
@@ -2,14 +2,27 @@
 <html>
 <head>{include="includes"}</head>
 <body>
-<div id="pageheader">
-       {include="page.header"}
-       <div id="toolsdiv">
-           <a href="?do=export&what=all"><b>Export all</b> <span>: Export all links</span></a><br><br>
-           <a href="?do=export&what=public"><b>Export public</b> <span>: Export public links only</a><br><br>
-           <a href="?do=export&what=private"><b>Export private</b> <span>: Export private links only</a><br><br style="clear:both;">
-       </div>
-</div>
-{include="page.footer"}
+  <div id="pageheader">
+    {include="page.header"}
+    <div id="toolsdiv">
+      <form method="GET">
+        <input type="hidden" name="do" value="export">
+        Selection:<br>
+        <input type="radio" name="selection" value="all" checked="true"> All<br>
+        <input type="radio" name="selection" value="private"> Private<br>
+        <input type="radio" name="selection" value="public"> Public<br>
+        <br>
+        <input type="checkbox" name="prepend_note_url" id="prepend_note_url">
+        <label for="prepend_note_url">
+          Prepend note permalinks with this Shaarli instance's URL
+          <em>(useful to import bookmarks in a web browser)</em>
+        </label>
+        <br><br>
+        <input class="bigbutton" type="submit" value="Export">
+      </form>
+      <div class="clear"></div>
+    </div>
+  </div>
+  {include="page.footer"}
 </body>
-</html>
\ No newline at end of file
+</html>