Changing design to mostly tableless code.
This commit is contained in:
90
export.php
90
export.php
@@ -26,63 +26,39 @@ if (!isset ($_POST['browser']) || $_POST['browser'] == "" ||
|
||||
}
|
||||
?>
|
||||
|
||||
<table class="caption">
|
||||
<tr>
|
||||
<td><span class="caption"><img src="./images/logo.png" alt=""> Export Bookmarks</span>
|
||||
</td>
|
||||
<h1 id="caption">Export Bookmarks</h1>
|
||||
|
||||
<td class="captionright">
|
||||
<div><?php object_count (); ?></div>
|
||||
<div><?php print_footer (); ?></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Wrapper starts here. -->
|
||||
<div style="min-width: <?php echo 230 + $settings['column_width_folder']; ?>px;">
|
||||
<!-- Menu starts here. -->
|
||||
<div id="menu">
|
||||
<h2 class="nav">Bookmarks</h2>
|
||||
<ul class="nav">
|
||||
<li><a href="./index.php">My Bookmarks</a></li>
|
||||
<li><a href="./shared.php">Shared Bookmarks</a></li>
|
||||
</ul>
|
||||
|
||||
<h2 class="nav">Tools</h2>
|
||||
<ul class="nav">
|
||||
<?php if (admin_only ()) { ?>
|
||||
<li><a href="./admin.php">Admin</a></li>
|
||||
<?php } ?>
|
||||
<li><a href="./import.php">Import</a></li>
|
||||
<li><a href="./export.php">Export</a></li>
|
||||
<li><a href="./sidebar.php">View as Sidebar</a></li>
|
||||
<li><a href="./settings.php">Settings</a></li>
|
||||
<li><a href="javascript:chpw()">Change Password</a></li>
|
||||
<li><a href="./index.php?logout=1">Logout</a></li>
|
||||
</ul>
|
||||
<!-- Menu ends here. -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<table class="main">
|
||||
<tr>
|
||||
<td class="main1">
|
||||
<table class="menu">
|
||||
<tr>
|
||||
<th class="menuhead">Bookmarks</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu">
|
||||
<a href="./index.php">My Bookmarks</a><br>
|
||||
<a href="./shared.php">Shared Bookmarks</a><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table class="menu">
|
||||
<tr>
|
||||
<th class="menuhead">Tools</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu">
|
||||
<?php if (admin_only ()) { ?>
|
||||
<a href="./admin.php">Admin</a><br>
|
||||
<?php } ?>
|
||||
<a href="./import.php">Import</a><br>
|
||||
<a href="./export.php">Export</a><br>
|
||||
<a href="./sidebar.php">View as Sidebar</a><br>
|
||||
<a href="./settings.php">Settings</a><br>
|
||||
<a href="javascript:chpw()">Change Password</a><br>
|
||||
<a href="./index.php?logout=1">Logout</a><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<td class="">
|
||||
<img src="./images/spacer.gif" alt="" class="main2">
|
||||
</td>
|
||||
<td class="main4">
|
||||
<!-- Main content starts here. -->
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
|
||||
<form enctype="multipart/form-data" action="<?php echo $_SERVER['SCRIPT_NAME'];?>" method="POST">
|
||||
<table valign="top">
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td>
|
||||
Export Bookmarks to Browser:
|
||||
@@ -142,9 +118,11 @@ if (!isset ($_POST['browser']) || $_POST['browser'] == "" ||
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- Main content ends here. -->
|
||||
</div>
|
||||
<!-- Wrapper ends here. -->
|
||||
</div>
|
||||
|
||||
<?php
|
||||
require_once (ABSOLUTE_PATH . "footer.php");
|
||||
|
||||
Reference in New Issue
Block a user