Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

header.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?PHP
  2. if (!defined('LIB_COMMON')) { require_once('lib/common.php'); }
  3. if (!defined('LIB_ACCOUNT')) { require_once('lib/account.php'); }
  4. if (!defined('LIB_DASHBOARD')) { require_once('lib/dashboard.php'); }
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  7. <html>
  8. <head>
  9. <title>UTD-Hosting :: <?PHP echo TITLE; ?></title>
  10. <link rel="stylesheet" type="text/css" href="<?PHP echo CP_PATH; ?>res/style.css">
  11. </script>
  12. <script type="text/javascript">
  13. _uacct = "UA-70222-2";
  14. urchinTracker();
  15. </script>
  16. </head>
  17. <body>
  18. <div id="header">
  19. <h1><img src="<?PHP echo CP_PATH; ?>res/logo.png" alt="UTD-Hosting" title="UTD-Hosting"></h1>
  20. </div>
  21. <?PHP
  22. if (defined('USER')) { require_once('lib/bandwidth.php'); }
  23. ?>
  24. <div id="menu">
  25. <div id="menuleft">
  26. <a href="<?PHP echo CP_PATH; ?>">Monitoring</a>
  27. </div>
  28. <div id="menuright">
  29. <a href="https://secure.utd-hosting.com/control">Control panel</a> |
  30. <a href="https://secure.utd-hosting.com/control/admin">Admin</a>
  31. </div>
  32. </div>
  33. <?PHP generateDashboard(); ?>
  34. <?PHP if (defined('MESSAGE')) { ?>
  35. <div id="message">
  36. <div>
  37. <?PHP echo MESSAGE; ?>
  38. </div>
  39. </div>
  40. <?PHP } ?>