blob: 95ff3e7d26de3e60f5685fb3c0a98ccbd52baadf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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>
|