source: Dev/trunk/applicationcreation.php @ 58

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

mainmenu.php tweaked for usability. When not logged in, the user gets redirected to index.php

File size: 764 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            <link rel="stylesheet" type="text/css" href="css/style.css" />
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                ?>
26            </div>
27        </div>
28    </body>
29</html>
Note: See TracBrowser for help on using the repository browser.