diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-10-15 17:01:37 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-11-05 14:29:53 +0100 |
commit | 6eafe49eb9afad21b0ce2069489ef1dfc1daf941 (patch) | |
tree | a2302a391123d4bd03bcec78c3530a136920d5b3 /tpl/default/export.html | |
parent | 7aff34edf05ea791a531c8787d3d6ca792ffb304 (diff) | |
download | Shaarli-6eafe49eb9afad21b0ce2069489ef1dfc1daf941.tar.gz Shaarli-6eafe49eb9afad21b0ce2069489ef1dfc1daf941.tar.zst Shaarli-6eafe49eb9afad21b0ce2069489ef1dfc1daf941.zip |
Import/export templates and minor fixes
Diffstat (limited to 'tpl/default/export.html')
-rw-r--r-- | tpl/default/export.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tpl/default/export.html b/tpl/default/export.html new file mode 100644 index 00000000..f6419763 --- /dev/null +++ b/tpl/default/export.html | |||
@@ -0,0 +1,73 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | {include="includes"} | ||
5 | </head> | ||
6 | <body> | ||
7 | {include="page.header"} | ||
8 | |||
9 | {$ratioLabel='5-12'} | ||
10 | {$ratioLabelMobile='7-8'} | ||
11 | {$ratioInput='7-12'} | ||
12 | {$ratioInputMobile='1-8'} | ||
13 | |||
14 | <form method="GET" action="" name="exportform" id="exportform"> | ||
15 | <div class="pure-g"> | ||
16 | <div class="pure-u-lg-1-4 pure-u-1-8"></div> | ||
17 | <div class="pure-u-lg-1-2 pure-u-3-4 page-form page-form-complete"> | ||
18 | <div> | ||
19 | <h2>{"Export Database"|t}</h2> | ||
20 | </div> | ||
21 | <input type="hidden" name="do" value="export"> | ||
22 | <input type="hidden" name="token" value="{$token}"> | ||
23 | |||
24 | <div class="pure-g"> | ||
25 | <div class="pure-u-lg-1-2 pure-u-1"> | ||
26 | <div class="form-label"> | ||
27 | <label><span class="label-name">{'Selection'|t}</span></label> | ||
28 | </div> | ||
29 | </div> | ||
30 | <div class="pure-u-lg-1-2 pure-u-1"> | ||
31 | <div class="radio-buttons"> | ||
32 | <div> | ||
33 | <input type="radio" name="selection" value="all" checked="true"> | ||
34 | {'All'|t} | ||
35 | </div> | ||
36 | <div> | ||
37 | <input type="radio" name="selection" value="private"> | ||
38 | {'Private'|t} | ||
39 | </div> | ||
40 | <div> | ||
41 | <input type="radio" name="selection" value="public"> | ||
42 | {'Public'|t} | ||
43 | </div> | ||
44 | </div> | ||
45 | </div> | ||
46 | </div> | ||
47 | |||
48 | <div class="pure-g"> | ||
49 | <div class="pure-u-lg-1-2 pure-u-7-8"> | ||
50 | <div class="form-label"> | ||
51 | <label for="prepend_note_url"> | ||
52 | <span class="label-name">{'Prepend note permalinks with this Shaarli instance\'s URL'|t}</span><br> | ||
53 | <span class="label-desc">{'Useful to import bookmarks in a web browser'|t}</span> | ||
54 | </label> | ||
55 | </div> | ||
56 | </div> | ||
57 | <div class="pure-u-lg-1-2 pure-u-1-8"> | ||
58 | <div class="form-input"> | ||
59 | <input type="checkbox" name="prepend_note_url" id="prepend_note_url"> | ||
60 | </div> | ||
61 | </div> | ||
62 | </div> | ||
63 | |||
64 | <div class="center"> | ||
65 | <input type="submit" value="{'Export'|t}"> | ||
66 | </div> | ||
67 | </div> | ||
68 | </div> | ||
69 | </form> | ||
70 | |||
71 | {include="page.footer"} | ||
72 | </body> | ||
73 | </html> | ||