diff --git a/html/includes/hostbox-public.inc.php b/html/includes/hostbox-public.inc.php
new file mode 100644
index 000000000..78067eb4a
--- /dev/null
+++ b/html/includes/hostbox-public.inc.php
@@ -0,0 +1,50 @@
+ -->
+
+ |
+ ' . $image . ' |
+ ' . generate_device_link($device) . ' | '
+ );
+
+echo('');
+if ($port_count) { echo(' '.$port_count); }
+echo(' ');
+if ($sensor_count) { echo(' '.$sensor_count); }
+echo(' | ');
+echo(' ' . $device['hardware'] . ' ' . $device['features'] . ' | ');
+//echo(' ' . $device['os_text'] . ' ' . $device['version'] . ' | ');
+echo(' ' . formatUptime($device['uptime'], 'short') . ' ');
+
+if (get_dev_attrib($device,'override_sysLocation_bool')) { $device['location'] = get_dev_attrib($device,'override_sysLocation_string'); }
+echo(' ' . truncate($device['location'],32, '') . ' | ');
+
+echo('
');
+
+?>
diff --git a/html/index.php b/html/index.php
index 2b90769c5..b30229775 100755
--- a/html/index.php
+++ b/html/index.php
@@ -212,7 +212,13 @@ if ($_SESSION['authenticated'])
{
include("pages/logon.inc.php");
} else {
+ echo '
' . (isset($config['footer']) ? $config['footer'] : ''));
-echo('
Admins Logon Here. ');
echo('
Powered by
' . $config['project_name_version'].'. ');
echo( $config['project_name'].' is
Free Software, released under the
GNU GPLv3.
');
echo(' Copyright © 2006-2012 by Adam Armstrong. Copyright © 2013-'.date("Y").' by the '.$config['project_name'].' Contributors.');