source: Dev/trunk/mainmenu.php @ 64

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

Start at SessionCreationTool?.

File size: 1.4 KB
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page   
3
4if (isset($_POST['login'])) {
5    if ($_POST['username'] == '')
6        die("Please log in!");
7    else {
8        $userDBI = new UserDatabaseInterface();
9        $user_exists = $userDBI->checkUserName($_POST['username']);
10        if ($user_exists) {
11            $correct_password = $userDBI->checkUserPassword($_POST);
12            /* session remembers login */
13            if (!$correct_password)
14                die("The password you entered is not correct!");
15            else
16                $_SESSION['username'] = $_POST['username'];
17        }
18        else
19            die("Unknown user name");
20    }
21}
22else if (is_null($_SESSION['username']))
23    redirect('index.php');
24
25$surveys = Loader::loadSurveys();
26?>
27
28<!DOCTYPE html>
29<html>
30    <head>
31        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
32        <title>Facilitator</title>
33        <?php new StyleSheet(); ?>
34        <script type="text/javascript" src="js/menu.js"></script>
35    </head>
36    <body>
37        <div id="header">
38            <?php new Logo(); ?>
39        </div>
40
41        <div id="wrapper">
42
43            <div id="content">
44                               
45                    <?php new SessionMenu(); ?>
46
47                    <?php new ApplicationMenu(); ?>
48               
49                    <?php new SurveyMenu($surveys); ?>
50
51            </div>
52        </div>
53    </body>
54</html>
Note: See TracBrowser for help on using the repository browser.