(file) Return to index.php CVS log (file) (dir) Up to [Development] / gantt_manager / src

 1 pjaol 1.1 <?php
 2 pjaol 1.3 include("lib/session.inc");
 3 pjaol 1.2 include("lib/db_objects/user_groups.inc");
 4 pjaol 1.3 include("lib/http/http.inc");
 5 pjaol 1.2 
 6 pjaol 1.3 $query = new query();
 7           $cmd = $query->param("cmd");
 8 pjaol 1.2 
 9           ?>
10           <html>
11           <head><title>Gantt Manager V1</title>
12 pjaol 1.3 <link rel="stylesheet" type="text/css" href="css/main.css" />
13 pjaol 1.2 </head>
14           <body>
15 pjaol 1.3 <table class="top_row">
16             <tr>
17               <td><span class="head_top">Gantt Manager</span></td>
18             </tr>
19           </table>
20           <table class="main_body">
21             <tr>
22               <td valign="top">
23               <?php
24           include("includes/navigation.php");
25           ?>
26               </td>
27               <td valign="top">
28 pjaol 1.2 
29 pjaol 1.3     <table class="center_body">
30                 <tr>
31                  <td>
32 pjaol 1.2 <?php
33 pjaol 1.3     switch ($cmd) {
34                 case "showgroups":
35                      include("test/groups.inc");
36                      break;
37                 case "login":
38                      include("test/login.inc");
39                      break;
40                 case "manage_users":
41                      include("test/manage_users.inc");
42                      break;
43                 default:
44                      include("test/login.html");
45               }
46 pjaol 1.2 ?>
47 pjaol 1.3        </td>
48                 </tr>
49               </table>
50               </td>
51              </tr>
52 pjaol 1.2 </table>
53           </body>
54           </html>

cvsadmin
Powered by
ViewCVS 0.9.2