aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/export.html
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/export.html')
-rw-r--r--tpl/export.html32
1 files changed, 22 insertions, 10 deletions
diff --git a/tpl/export.html b/tpl/export.html
index 9d101db4..67c3d05f 100644
--- a/tpl/export.html
+++ b/tpl/export.html
@@ -2,15 +2,27 @@
2<html> 2<html>
3<head>{include="includes"}</head> 3<head>{include="includes"}</head>
4<body> 4<body>
5<div id="pageheader"> 5 <div id="pageheader">
6 {include="page.header"} 6 {include="page.header"}
7 <div id="toolsdiv"> 7 <div id="toolsdiv">
8 <a href="?do=export&amp;what=all"><b>Export all</b> <span>: Export all links</span></a><br><br> 8 <form method="GET">
9 <a href="?do=export&amp;what=public"><b>Export public</b> <span>: Export public links only</span></a><br><br> 9 <input type="hidden" name="do" value="export">
10 <a href="?do=export&amp;what=private"><b>Export private</b> <span>: Export private links only</span></a> 10 Selection:<br>
11 <div class="clear"></div> 11 <input type="radio" name="selection" value="all" checked="true"> All<br>
12 </div> 12 <input type="radio" name="selection" value="private"> Private<br>
13</div> 13 <input type="radio" name="selection" value="public"> Public<br>
14{include="page.footer"} 14 <br>
15 <input type="checkbox" name="prepend_note_url" id="prepend_note_url">
16 <label for="prepend_note_url">
17 Prepend note permalinks with this Shaarli instance's URL
18 <em>(useful to import bookmarks in a web browser)</em>
19 </label>
20 <br><br>
21 <input class="bigbutton" type="submit" value="Export">
22 </form>
23 <div class="clear"></div>
24 </div>
25 </div>
26 {include="page.footer"}
15</body> 27</body>
16</html> 28</html>