source: Dev/trunk/dashboard.php @ 73

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

Small bugfix SurveyCreationTool?. Forgot an attribute.

File size: 691 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></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                ?>
25            </div>
26        </div>
27    </body>
28</html>
Note: See TracBrowser for help on using the repository browser.