2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>{include="includes"}</head>
|
|
|
|
<body onload="document.uploadform.filetoupload.focus();">
|
|
|
|
<div id="pageheader">
|
|
|
|
{include="page.header"}
|
|
|
|
<div id="uploaddiv">
|
2015-06-11 13:53:27 +02:00
|
|
|
Import Netscape HTML bookmarks (as exported from Firefox/Chrome/Opera/Delicious/Diigo...) (Max: {$maxfilesize} bytes).
|
2013-02-26 10:09:41 +01:00
|
|
|
<form method="POST" action="?do=upload" enctype="multipart/form-data" name="uploadform" id="uploadform">
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
2014-12-12 17:01:02 +01:00
|
|
|
<input type="file" name="filetoupload">
|
2015-06-11 13:53:27 +02:00
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize}">
|
2013-02-26 10:09:41 +01:00
|
|
|
<input type="submit" name="import_file" value="Import" class="bigbutton"><br>
|
|
|
|
<input type="checkbox" name="private" id="private"><label for="private"> Import all links as private</label><br>
|
|
|
|
<input type="checkbox" name="overwrite" id="overwrite"><label for="overwrite"> Overwrite existing links</label>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
|
|
|
</html>
|