Devices: Add window titles.

This commit is contained in:
Nate
2020-01-06 07:39:59 -07:00
parent 6a81e64b3a
commit 4edd21773a
8 changed files with 105 additions and 9 deletions
+9 -7
View File
@@ -120,16 +120,18 @@
$row_style["1"] = "row_style1";
//begin the page content
$document['title'] = $text['title-device_export'];
require_once "resources/header.php";
echo "<div style='float: right;'>\n";
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='devices.php'\" value='".$text['button-back']."'>\n";
echo "</div>\n";
echo "<b>".$text['header-device_export']."</b>\n";
echo "<br /><br />\n";
echo "<form method='post' name='frm' action='device_download.php' autocomplete='off'>\n";
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
echo " <td valign='top' align='left' nowrap='nowrap'><b>".$text['header-export']."</b><br /></td>\n";
echo " <td valign='top' align='right' colspan='2'>\n";
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='devices.php'\" value='".$text['button-back']."'>\n";
echo " </td>\n";
echo " </tr>\n";
echo " <th><input type=\"checkbox\" id=\"selectall\" onclick=\"checkbox_toggle();\"/></th>\n";
echo " <th>Column Name</th>\n";
echo " <th>Description</th>\n";
@@ -177,4 +179,4 @@
//include the footer
require_once "resources/footer.php";
?>
?>