source: Dev/trunk/applicationcreation.php @ 72

Last change on this file since 72 was 66, checked in by fpvanagthoven, 14 years ago

ApplicationCreationTool?.php and SessionCreationTool? (now can add survey to pipeline)

File size: 762 bytes
Line 
1<?php
2require 'classes/master.php';
3
4if (is_null($_SESSION['username']))
5    redirect('index.php');
6?>
7<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
8    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
9
10<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
11    <head>
12        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
13            <title>Application Creation</title>
14            <?php new StyleSheet(); ?>
15    </head>
16    <body>
17        <div id="header">
18            <?php new Logo(); ?>
19        </div>
20        <div id="wrapper">
21
22            <div id="content">
23                <?php
24                    new ApplicationCreationTool();
25                ?>
26            </div>
27        </div>
28    </body>
29</html>
Note: See TracBrowser for help on using the repository browser.