| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2010, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- ?>
- <!doctype html>
- <html>
- <head>
- <?php echo $this->html->charset();?>
- <title>Application > <?php echo $this->title(); ?></title>
- <link href="index.php_files/basic.css" media="screen" rel="stylesheet" type="text/css"/>
- <link href="index.php_files/style.css" media="screen" rel="stylesheet" type="text/css"/>
- <script type="text/javascript" src="index.php_files/jquery.min.js"></script>
- <script type="text/javascript" src="index.php_files/jquery.ba-bbq.min.js"></script>
- <script type="text/javascript" src="index.php_files/main.js"></script>
- <!--[if IE]>
- <link href="index.php_files/ie.css" media="screen" rel="stylesheet" type="text/css"/>
- <![endif]-->
- </head>
- <body>
- <div id="header">
- <div class="wrapper clearfix">
- <div class="logo-container">
- <h2 id="logo"><a class="ie6fix" href="index.php?a=portal/home">Advanced Client Portal</a>
- </h2>
- </div>
- <div class="navigation">
- <ul class="main_nav dropdown">
- <li>
- <a href="index.php?a=portal/home">Home</a>
- </li>
- <li><a href="#">Actions</a>
- <ul>
- <li>
- <a class="new-client-button modal"
- href="index.php?a=clients/create">New Client</a>
- </li>
- <li>
- <a class="new-project-button modal"
- href="index.php?a=projects/start">New Project</a>
- </li>
- <li>
- <a class="new-invoice-button modal"
- href="index.php?a=invoices/create">New Invoice</a>
- </li>
- <li>
- <a class="new-admin-button modal"
- href="index.php?a=clients/edit/admin">New Admin</a>
- </li>
- <li>
- <a class="new-admin-button modal"
- href="index.php?a=clients/edit/myprofile">Edit My Info</a>
- </li>
-
- <li>
- <a class="change-pass-button modal"
- href="index.php?a=clients/change_password">Change
- Password</a>
- </li>
- </ul>
- </li>
- <li>
- <a href="index.php?a=portal/logout">Logout</a>
- </li>
- </ul>
- <a class="resize_button"></a>
- </div>
- </div>
- </div>
- <div id="modal" class="jqmWindow jqmID1">
- <div id="modal-body"></div>
- </div>
- <div id="content">
- <?php echo $this->content(); ?>
- </div>
- </body>
- </html>
|