<?php
session_start();
//check to see if user has logged in with a valid password
if ($_SESSION['authuser'] !=1 ) {
include "login.php";
echo '<div align="center"';
echo "<p> Your user name or password may be incorrect! </p>";
echo "</div>";
exit();
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="../ajaxtabs/ajaxtabs.css" />
<script type="text/javascript" src="../ajaxtabs/ajaxtabs.js">
</script>
<link rel="stylesheet" type="text/css" href="../common/styles.css"/>
<title>Decider - Information Gathering Assistant</title>
</head>
<body>
<div id='maindiv' align="center">
<table width="800px">
<tr>
<td align="left" valign="top"><?php require('../common/top.html'); ?></td>
</tr>
</table>
<table background="../common/tableback.png" width="800px" height="800px">
<tr><td></td>
<td class="label" align="right"><?php
echo $_SESSION['username'];
?></td></tr>
<tr>
<td width="200px" align="left" valign="top"><?php require('../common/menu.html'); ?></td>
<td width="600px" align="left" valign="top"><?php require('home.html'); ?></td>
</tr>
</table>
</div>
</body>
</html>