aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/export.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:52:17 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit402b03464812aaec76bc841ca7dacb775baf1e03 (patch)
tree5f5ce030a71ed1ac327f60911cb22f0ca87d21cd /tpl/default/export.html
parent009ce9358168cc06c76fc2f4162829e552e633a3 (diff)
downloadShaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.gz
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.zst
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.zip
Introduce the new default Shaarli template
Diffstat (limited to 'tpl/default/export.html')
-rw-r--r--tpl/default/export.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/tpl/default/export.html b/tpl/default/export.html
new file mode 100644
index 00000000..af1d6e33
--- /dev/null
+++ b/tpl/default/export.html
@@ -0,0 +1,68 @@
1<!DOCTYPE html>
2<html>
3<head>
4 {include="includes"}
5</head>
6<body>
7{include="page.header"}
8
9<form method="GET" action="#" name="exportform" id="exportform">
10 <div class="pure-g">
11 <div class="pure-u-lg-1-4 pure-u-1-24"></div>
12 <div class="pure-u-lg-1-2 pure-u-22-24 page-form page-form-complete">
13 <div>
14 <h2 class="window-title">{"Export Database"|t}</h2>
15 </div>
16 <input type="hidden" name="do" value="export">
17 <input type="hidden" name="token" value="{$token}">
18
19 <div class="pure-g">
20 <div class="pure-u-lg-1-2 pure-u-1">
21 <div class="form-label">
22 <label><span class="label-name">{'Selection'|t}</span></label>
23 </div>
24 </div>
25 <div class="pure-u-lg-1-2 pure-u-1">
26 <div class="radio-buttons">
27 <div>
28 <input type="radio" name="selection" value="all" checked="checked">
29 {'All'|t}
30 </div>
31 <div>
32 <input type="radio" name="selection" value="private">
33 {'Private'|t}
34 </div>
35 <div>
36 <input type="radio" name="selection" value="public">
37 {'Public'|t}
38 </div>
39 </div>
40 </div>
41 </div>
42
43 <div class="pure-g">
44 <div class="pure-u-lg-1-2 pure-u-7-8">
45 <div class="form-label">
46 <label for="prepend_note_url">
47 <span class="label-name">{'Prepend note permalinks with this Shaarli instance\'s URL'|t}</span><br>
48 <span class="label-desc">{'Useful to import bookmarks in a web browser'|t}</span>
49 </label>
50 </div>
51 </div>
52 <div class="pure-u-lg-1-2 pure-u-1-8">
53 <div class="form-input">
54 <input type="checkbox" name="prepend_note_url" id="prepend_note_url">
55 </div>
56 </div>
57 </div>
58
59 <div class="center">
60 <input type="submit" value="{'Export'|t}">
61 </div>
62 </div>
63 </div>
64</form>
65
66{include="page.footer"}
67</body>
68</html>