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

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