diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-02-27 20:24:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 20:24:28 +0100 |
commit | 5978588578ca103152598ccfbe41019b12e00a4f (patch) | |
tree | eedbb83c420f6af103440bcafbe6b79738ce7521 /tpl/default/export.html | |
parent | 9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff) | |
parent | 7dcbfde5ffbc057a44f710e3be7e4856d235e90b (diff) | |
download | Shaarli-5978588578ca103152598ccfbe41019b12e00a4f.tar.gz Shaarli-5978588578ca103152598ccfbe41019b12e00a4f.tar.zst Shaarli-5978588578ca103152598ccfbe41019b12e00a4f.zip |
Merge pull request #754 from ArthurHoaro/webdesign2
New default template
Diffstat (limited to 'tpl/default/export.html')
-rw-r--r-- | tpl/default/export.html | 82 |
1 files changed, 61 insertions, 21 deletions
diff --git a/tpl/default/export.html b/tpl/default/export.html index 67c3d05f..af1d6e33 100644 --- a/tpl/default/export.html +++ b/tpl/default/export.html | |||
@@ -1,28 +1,68 @@ | |||
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | <html> | 2 | <html> |
3 | <head>{include="includes"}</head> | 3 | <head> |
4 | {include="includes"} | ||
5 | </head> | ||
4 | <body> | 6 | <body> |
5 | <div id="pageheader"> | 7 | {include="page.header"} |
6 | {include="page.header"} | 8 | |
7 | <div id="toolsdiv"> | 9 | <form method="GET" action="#" name="exportform" id="exportform"> |
8 | <form method="GET"> | 10 | <div class="pure-g"> |
9 | <input type="hidden" name="do" value="export"> | 11 | <div class="pure-u-lg-1-4 pure-u-1-24"></div> |
10 | Selection:<br> | 12 | <div class="pure-u-lg-1-2 pure-u-22-24 page-form page-form-complete"> |
11 | <input type="radio" name="selection" value="all" checked="true"> All<br> | 13 | <div> |
12 | <input type="radio" name="selection" value="private"> Private<br> | 14 | <h2 class="window-title">{"Export Database"|t}</h2> |
13 | <input type="radio" name="selection" value="public"> Public<br> | 15 | </div> |
14 | <br> | 16 | <input type="hidden" name="do" value="export"> |
15 | <input type="checkbox" name="prepend_note_url" id="prepend_note_url"> | 17 | <input type="hidden" name="token" value="{$token}"> |
16 | <label for="prepend_note_url"> | 18 | |
17 | Prepend note permalinks with this Shaarli instance's URL | 19 | <div class="pure-g"> |
18 | <em>(useful to import bookmarks in a web browser)</em> | 20 | <div class="pure-u-lg-1-2 pure-u-1"> |
19 | </label> | 21 | <div class="form-label"> |
20 | <br><br> | 22 | <label><span class="label-name">{'Selection'|t}</span></label> |
21 | <input class="bigbutton" type="submit" value="Export"> | 23 | </div> |
22 | </form> | 24 | </div> |
23 | <div class="clear"></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> | ||
24 | </div> | 62 | </div> |
25 | </div> | 63 | </div> |
26 | {include="page.footer"} | 64 | </form> |
65 | |||
66 | {include="page.footer"} | ||
27 | </body> | 67 | </body> |
28 | </html> | 68 | </html> |