diff options
author | Knah Tsaeb <Knah-Tsaeb@knah-tsaeb.org> | 2016-12-07 11:58:25 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-01-05 12:04:02 +0100 |
commit | adc4aee80f7cd3242f65f0b316af2b560a64712c (patch) | |
tree | af62f8bfb21232bc36dd6d12eb5bc2fc35c21146 /tpl/default/import.html | |
parent | fc11ab2f290a3712b766d78fdbcd354625a35d0a (diff) | |
download | Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.tar.gz Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.tar.zst Shaarli-adc4aee80f7cd3242f65f0b316af2b560a64712c.zip |
Change templates set through administration UI
Diffstat (limited to 'tpl/default/import.html')
-rw-r--r-- | tpl/default/import.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tpl/default/import.html b/tpl/default/import.html new file mode 100644 index 00000000..071e1160 --- /dev/null +++ b/tpl/default/import.html | |||
@@ -0,0 +1,33 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"}</head> | ||
4 | <body onload="document.uploadform.filetoupload.focus();"> | ||
5 | <div id="pageheader"> | ||
6 | {include="page.header"} | ||
7 | <div id="uploaddiv"> | ||
8 | Import Netscape HTML bookmarks (as exported from Firefox/Chrome/Opera/Delicious/Diigo...) (Max: {$maxfilesize} bytes). | ||
9 | <form method="POST" action="?do=import" enctype="multipart/form-data" | ||
10 | name="uploadform" id="uploadform"> | ||
11 | <input type="hidden" name="token" value="{$token}"> | ||
12 | <input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize}"> | ||
13 | <input type="file" name="filetoupload"> | ||
14 | <input type="submit" name="import_file" value="Import" class="bigbutton"><br> | ||
15 | |||
16 | <label for="privacy"> Visibility:</label><br> | ||
17 | <input type="radio" name="privacy" value="default" checked="true"> | ||
18 | Use values from the imported file, default to public<br> | ||
19 | <input type="radio" name="privacy" value="private"> | ||
20 | Import all bookmarks as private<br> | ||
21 | <input type="radio" name="privacy" value="public"> | ||
22 | Import all bookmarks as public<br> | ||
23 | |||
24 | <input type="checkbox" name="overwrite" id="overwrite"> | ||
25 | <label for="overwrite"> Overwrite existing bookmarks</label><br> | ||
26 | <label for="default_tags"> Add default tags</label> | ||
27 | <input type="text" name="default_tags" id="default_tags"> | ||
28 | </form> | ||
29 | </div> | ||
30 | </div> | ||
31 | {include="page.footer"} | ||
32 | </body> | ||
33 | </html> | ||