1 | <? |
---|
2 | session_start(); |
---|
3 | ?> |
---|
4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
5 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
6 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
7 | <head> |
---|
8 | <title>Web Klask</title> |
---|
9 | |
---|
10 | <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" /> |
---|
11 | |
---|
12 | <meta name="generator" content="Jonas John" /> |
---|
13 | <meta name="description" content="put a good description in here" /> |
---|
14 | <meta name="keywords" content="good,keywords" /> |
---|
15 | |
---|
16 | <link rel="stylesheet" type="text/css" href="css/bluesky.css" media="screen, tv, projection" title="Default" /> |
---|
17 | <link rel="alternative stylesheet" type="text/css" href="css/bluesky_large.css" media="screen, projection, tv" title="Larger Fonts" /> |
---|
18 | |
---|
19 | <link rel="alternative stylesheet" type="text/css" href="css/print.css" media="screen" title="Print Preview" /> |
---|
20 | <link rel="alternative stylesheet" type="text/css" href="css/handheld.css" media="screen" title="Small Layout Preview" /> |
---|
21 | |
---|
22 | <link rel="stylesheet" type="text/css" href="css/handheld.css" media="handheld" title="Small Layout" /> |
---|
23 | <link rel="stylesheet" type="text/css" href="css/print.css" media="print" /> |
---|
24 | |
---|
25 | <!-- Navigational metadata (an accessibility feature - preview in opera) --> |
---|
26 | <link rel="top" href="index.html" title="Homepage" /> |
---|
27 | <link rel="up" href="index.html" title="Up" /> |
---|
28 | <link rel="first" href="index.html" title="First page" /> |
---|
29 | <link rel="previous" href="index.html" title="Previous page" /> |
---|
30 | <link rel="next" href="index.html" title="Next page" /> |
---|
31 | <link rel="last" href="index.html" title="Last page" /> |
---|
32 | <link rel="toc" href="index.html" title="Table of contents" /> |
---|
33 | <link rel="index" href="index.html" title="Site map" /> |
---|
34 | |
---|
35 | </head> |
---|
36 | <body> |
---|
37 | |
---|
38 | <div id="page"> |
---|
39 | |
---|
40 | <div id="header"> |
---|
41 | <a href="index.html">ENS LYON</a> |
---|
42 | </div> |
---|
43 | |
---|
44 | <div id="wrapper"> |
---|
45 | |
---|
46 | <div id="content"> |
---|
47 | |
---|
48 | <div id="path"> |
---|
49 | A NICE GUI FOR KLASK |
---|
50 | </div> |
---|
51 | |
---|
52 | <div id="main"> |
---|
53 | |
---|
54 | <!-- <h1>Welcome !</h1> --> |
---|
55 | |
---|
56 | <p> |
---|
57 | <? |
---|
58 | |
---|
59 | include('./resultat-inc.php'); |
---|
60 | |
---|
61 | ?> |
---|
62 | </p> |
---|
63 | |
---|
64 | </div> |
---|
65 | |
---|
66 | </div> |
---|
67 | |
---|
68 | <div id="left"> |
---|
69 | |
---|
70 | <div id="nav"> |
---|
71 | |
---|
72 | <h3>Klask</h3> |
---|
73 | |
---|
74 | <div class="inner_box"> |
---|
75 | |
---|
76 | <ul> |
---|
77 | <li> |
---|
78 | <? |
---|
79 | //mettre ici l'include du menu de navigation |
---|
80 | //session_start(); |
---|
81 | |
---|
82 | |
---|
83 | if ( ctrlAuth() == 0 ) { |
---|
84 | echo displayAuthUser(); |
---|
85 | }else{ |
---|
86 | |
---|
87 | echo navKlask(); |
---|
88 | } |
---|
89 | |
---|
90 | ?> |
---|
91 | </li> |
---|
92 | </ul> |
---|
93 | </div> |
---|
94 | |
---|
95 | <h3>AFFICHER</h3> |
---|
96 | |
---|
97 | <div class="inner_box"> |
---|
98 | |
---|
99 | <ul> |
---|
100 | <li> |
---|
101 | <? |
---|
102 | //mettre ici l'include du menu de navigation |
---|
103 | //session_start(); |
---|
104 | |
---|
105 | if ( ctrlAuth() == 0 ) { |
---|
106 | //echo displayAuthUser(); |
---|
107 | }else{ |
---|
108 | echo navDisplay(); |
---|
109 | } |
---|
110 | |
---|
111 | ?> |
---|
112 | </li> |
---|
113 | </ul> |
---|
114 | </div> |
---|
115 | |
---|
116 | <h3>AJOUTER</h3> |
---|
117 | |
---|
118 | <div class="inner_box"> |
---|
119 | |
---|
120 | <ul> |
---|
121 | <li> |
---|
122 | <? |
---|
123 | //mettre ici l'include du menu de navigation |
---|
124 | //session_start(); |
---|
125 | |
---|
126 | if ( ctrlAuth() == 0 ) { |
---|
127 | //echo displayAuthUser(); |
---|
128 | }else{ |
---|
129 | echo navAdd(); |
---|
130 | } |
---|
131 | |
---|
132 | ?> |
---|
133 | </li> |
---|
134 | </ul> |
---|
135 | </div> |
---|
136 | |
---|
137 | |
---|
138 | <h3>Supprimer</h3> |
---|
139 | |
---|
140 | <div class="inner_box"> |
---|
141 | |
---|
142 | <ul> |
---|
143 | <li> |
---|
144 | <? |
---|
145 | //mettre ici l'include du menu de navigation |
---|
146 | //session_start(); |
---|
147 | |
---|
148 | if ( ctrlAuth() == 0 ) { |
---|
149 | //echo displayAuthUser(); |
---|
150 | }else{ |
---|
151 | echo navDel(); |
---|
152 | } |
---|
153 | |
---|
154 | ?> |
---|
155 | </li> |
---|
156 | </ul> |
---|
157 | </div> |
---|
158 | |
---|
159 | <!-- i love clean source code --> |
---|
160 | |
---|
161 | </div> |
---|
162 | </div> |
---|
163 | |
---|
164 | </div> |
---|
165 | |
---|
166 | <div id="footer"> |
---|
167 | <p> |
---|
168 | License GPL V2 <a href="index.html">WebKlask</a>. |
---|
169 | Webdesign disponible sur <a href="http://www.oswd.org">Open Source Web Design</a> by <a href="http://www.jonasjohn.de/">Jonas John</a>. |
---|
170 | |
---|
171 | <!-- please leave a small credit to the author - thanks :-) ! --> |
---|
172 | |
---|
173 | </p> |
---|
174 | </div> |
---|
175 | |
---|
176 | </div> |
---|
177 | |
---|
178 | </body> |
---|
179 | </html> |
---|