]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/default/export.html
Import/export templates and minor fixes
[github/shaarli/Shaarli.git] / tpl / default / export.html
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>