Last change
on this file since 76 was
69,
checked in by fpvanagthoven, 14 years ago
|
You can now delete anywhere from pipeline.
|
File size:
806 bytes
|
Rev | Line | |
---|
[56] | 1 | <?php |
---|
| 2 | require 'classes/master.php'; |
---|
[58] | 3 | |
---|
| 4 | if (is_null($_SESSION['username'])) |
---|
| 5 | redirect('index.php'); |
---|
[69] | 6 | |
---|
| 7 | $session = Session::getSession($_POST); |
---|
[56] | 8 | ?> |
---|
[69] | 9 | |
---|
| 10 | |
---|
| 11 | |
---|
[56] | 12 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
| 13 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
| 14 | |
---|
| 15 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
| 16 | <head> |
---|
| 17 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 18 | <title>Session Creation</title> |
---|
[61] | 19 | <?php new StyleSheet(); ?> |
---|
[56] | 20 | </head> |
---|
| 21 | <body> |
---|
| 22 | <div id="header"> |
---|
| 23 | <?php new Logo(); ?> |
---|
| 24 | </div> |
---|
| 25 | <div id="wrapper"> |
---|
| 26 | |
---|
| 27 | <div id="content"> |
---|
| 28 | <?php |
---|
[69] | 29 | new SessionCreationTool($session); |
---|
[56] | 30 | ?> |
---|
| 31 | </div> |
---|
| 32 | </div> |
---|
| 33 | </body> |
---|
| 34 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.