summaryrefslogtreecommitdiffstats
path: root/views/layouts/admin.html.php
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-05-28 13:28:16 -0400
committerMichael Francis <edude03@gmail.com>2011-05-28 13:28:16 -0400
commit2389d66da849798f8d4ec5f10e3b07c11da49185 (patch)
treee22556d12982395b469a23420c662662e3e064cc /views/layouts/admin.html.php
downloadotakuhub-2389d66da849798f8d4ec5f10e3b07c11da49185.tar.xz
Initial Commit
Diffstat (limited to 'views/layouts/admin.html.php')
-rw-r--r--views/layouts/admin.html.php91
1 files changed, 91 insertions, 0 deletions
diff --git a/views/layouts/admin.html.php b/views/layouts/admin.html.php
new file mode 100644
index 0000000..95ff3e7
--- /dev/null
+++ b/views/layouts/admin.html.php
@@ -0,0 +1,91 @@
+<?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> \ No newline at end of file