<?php
/**
* The template file that draws the layout to import bookmarks
*
* @package be.nauta.booby.plugins.bookmarks.view
* @author Barry Nauta
* @copyright Barry Nauta
*
* This file is part of the Booby project.
* The booby project is located at the following location:
* http://www.nauta.be/booby/
*
* Copyright (c) 2003 - 2004 Barry Nauta
*
* The Booby project is released under the General Public License
* More detailes in the file 'gpl.html' or on the following
* website: <code>http://www.gnu.org</code> and look for licenses
*
* Enjoy :-)
*/
?>
<form enctype="multipart/form-data" action="BookmarkController.php"
method="post" name="importBookmarks">
<select name="importType">
<option value="Opera">Opera</option>
<option value="Netscape">Netscape/Mozilla</option>
</select>
<br />
<?php echo $dictionary['file'] ?>:
<input type="file" name="importFile"><br>
<input type="hidden" name="parentId" value="<?php echo $parentId ?>" />
<input type="hidden" name="action" value="importBookmarks" />
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
<input type="submit" name="importSubmit" value="<?php echo $dictionary['submit'] ?>">
</form>
|