admin.html.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2010, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. ?>
  9. <!doctype html>
  10. <html>
  11. <head>
  12. <?php echo $this->html->charset();?>
  13. <title>Application > <?php echo $this->title(); ?></title>
  14. <link href="index.php_files/basic.css" media="screen" rel="stylesheet" type="text/css"/>
  15. <link href="index.php_files/style.css" media="screen" rel="stylesheet" type="text/css"/>
  16. <script type="text/javascript" src="index.php_files/jquery.min.js"></script>
  17. <script type="text/javascript" src="index.php_files/jquery.ba-bbq.min.js"></script>
  18. <script type="text/javascript" src="index.php_files/main.js"></script>
  19. <!--[if IE]>
  20. <link href="index.php_files/ie.css" media="screen" rel="stylesheet" type="text/css"/>
  21. <![endif]-->
  22. </head>
  23. <body>
  24. <div id="header">
  25. <div class="wrapper clearfix">
  26. <div class="logo-container">
  27. <h2 id="logo"><a class="ie6fix" href="index.php?a=portal/home">Advanced Client Portal</a>
  28. </h2>
  29. </div>
  30. <div class="navigation">
  31. <ul class="main_nav dropdown">
  32. <li>
  33. <a href="index.php?a=portal/home">Home</a>
  34. </li>
  35. <li><a href="#">Actions</a>
  36. <ul>
  37. <li>
  38. <a class="new-client-button modal"
  39. href="index.php?a=clients/create">New Client</a>
  40. </li>
  41. <li>
  42. <a class="new-project-button modal"
  43. href="index.php?a=projects/start">New Project</a>
  44. </li>
  45. <li>
  46. <a class="new-invoice-button modal"
  47. href="index.php?a=invoices/create">New Invoice</a>
  48. </li>
  49. <li>
  50. <a class="new-admin-button modal"
  51. href="index.php?a=clients/edit/admin">New Admin</a>
  52. </li>
  53. <li>
  54. <a class="new-admin-button modal"
  55. href="index.php?a=clients/edit/myprofile">Edit My Info</a>
  56. </li>
  57. <li>
  58. <a class="change-pass-button modal"
  59. href="index.php?a=clients/change_password">Change
  60. Password</a>
  61. </li>
  62. </ul>
  63. </li>
  64. <li>
  65. <a href="index.php?a=portal/logout">Logout</a>
  66. </li>
  67. </ul>
  68. <a class="resize_button"></a>
  69. </div>
  70. </div>
  71. </div>
  72. <div id="modal" class="jqmWindow jqmID1">
  73. <div id="modal-body"></div>
  74. </div>
  75. <div id="content">
  76. <?php echo $this->content(); ?>
  77. </div>
  78. </body>
  79. </html>