diff options
Diffstat (limited to 'tpl/import.html')
-rw-r--r-- | tpl/import.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tpl/import.html b/tpl/import.html new file mode 100644 index 00000000..9e581fc9 --- /dev/null +++ b/tpl/import.html | |||
@@ -0,0 +1,21 @@ | |||
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|htmlspecialchars} bytes). | ||
9 | <form method="POST" action="?do=upload" enctype="multipart/form-data" name="uploadform" id="uploadform"> | ||
10 | <input type="hidden" name="token" value="{$token}"> | ||
11 | <input type="file" name="filetoupload" size="80"> | ||
12 | <input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize|htmlspecialchars}"> | ||
13 | <input type="submit" name="import_file" value="Import" class="bigbutton"><br> | ||
14 | <input type="checkbox" name="private" id="private"><label for="private"> Import all links as private</label><br> | ||
15 | <input type="checkbox" name="overwrite" id="overwrite"><label for="overwrite"> Overwrite existing links</label> | ||
16 | </form> | ||
17 | </div> | ||
18 | </div> | ||
19 | {include="page.footer"} | ||
20 | </body> | ||
21 | </html> \ No newline at end of file | ||