2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>{include="includes"}</head>
|
|
|
|
<body onload="document.uploadform.filetoupload.focus();">
|
|
|
|
<div id="pageheader">
|
2016-07-28 22:54:33 +02:00
|
|
|
{include="page.header"}
|
|
|
|
<div id="uploaddiv">
|
|
|
|
Import Netscape HTML bookmarks (as exported from Firefox/Chrome/Opera/Delicious/Diigo...) (Max: {$maxfilesize} bytes).
|
|
|
|
<form method="POST" action="?do=import" enctype="multipart/form-data"
|
|
|
|
name="uploadform" id="uploadform">
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
|
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="{$maxfilesize}">
|
|
|
|
<input type="file" name="filetoupload">
|
|
|
|
<input type="submit" name="import_file" value="Import" class="bigbutton"><br>
|
|
|
|
|
|
|
|
<label for="privacy"> Visibility:</label><br>
|
|
|
|
<input type="radio" name="privacy" value="default" checked="true">
|
|
|
|
Use values from the imported file, default to public<br>
|
|
|
|
<input type="radio" name="privacy" value="private">
|
|
|
|
Import all bookmarks as private<br>
|
|
|
|
<input type="radio" name="privacy" value="public">
|
|
|
|
Import all bookmarks as public<br>
|
|
|
|
|
|
|
|
<input type="checkbox" name="overwrite" id="overwrite">
|
|
|
|
<label for="overwrite"> Overwrite existing bookmarks</label><br>
|
|
|
|
<label for="default_tags"> Add default tags</label>
|
|
|
|
<input type="text" name="default_tags" id="default_tags">
|
|
|
|
</form>
|
|
|
|
</div>
|
2013-02-26 10:09:41 +01:00
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
2016-07-28 22:54:33 +02:00
|
|
|
</html>
|