about.php
account.php
auth.php
contact.php
create.php
edit_schedule.php
faq.php
group_view.php
groups.php
index.php
password.php
register.php
results.php
schedules.ph
p



download
all files

About.php Source Code
<?php
session_start();

//GroupAware
//Team 7

function redirect($page){
// redirect user to $page
echo '<script language="JavaScript">window.location.href="'.$page.'"</script>'."\n";
}

function logout() {
// log user out, unregister sessions
unset($_SESSION['sess_userid']);
session_unregister($sess_userid);
session_unset();
session_destroy();
}

if ($HTTP_GET_VARS['action'] == 'logout') {
logout();
redirect('index.php');
}
?>

<html>
<head>
<title>GroupAware</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="group.css" rel="stylesheet" type="text/css">
<link href="blocks.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
@import url("tabs.css");
-->
</style>
</head>

<body link="#003366" vlink="#003366" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" height="125" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="75" valign="bottom" bgcolor="#CCCCCC"><table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="125" height="110"><font size="7" face="Arial, Helvetica, sans-serif"><strong><a href="index.php"><img src="groupAwareLogoSm2.gif" alt="logo" width="103" height="99" border="0" align="absmiddle"></a></strong></font></td>
<td><img src="spacer.gif" width="20" height="8"><font size="7" face="Arial, Helvetica, sans-serif"><strong>Group<font color="#003366">Aware</font>
<font size="4"><br>
<img src="spacer.gif" width="150" height="1">Meeting Time Organizer</font></strong></font></td>
<td width="200" valign="top" class="css"> <div align="right"><strong><font size="1"><a href="about.php">
<font size="2">About</font></a><font size="2"> | <a href="faq.php">FAQ</a>
| <a href="contact.php">Contact</a><img src="spacer.gif" width="10" height="8"></font></font></strong>&nbsp;</div></td>
</tr>
</table>
<div align="right">
<table width="200" height="25" border="0" cellpadding="0" cellspacing="0" bordercolor="#660000" class="tabs">
<tr valign="middle" class="tabs">
<td width="100" bgcolor="#660000" class="tabs">
<div align="center"><a href="index.php"><font color="#FFFFFF"><strong>Log
In </strong></font></a></div></td>
<td width="100" bgcolor="#FFFFFF" class="tabs">
<div align="center"><strong><a href="register.php">Register</a></strong></div></td>
</tr>
</table>
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="5" bgcolor="#660000"><img src="spacer.gif" width="1" height="1"></td>
</tr>
</table></td>
</tr>
<!--
<tr>
<td height="7" colspan="2" bgcolor="#660000"><img src="spacer.gif" width="1" height="1"></td>
</tr>
-->
</table>
<br>

<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="820"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="420" class="css"> <div align="center"> <img src="groupAwareLogoLg2.gif" width="309" height="298"></div></td>
<td valign="top" class="css">
<p>This site was created for an IST 402 course on emerging technologies.
This is a prototype design and should not be relied upon to
maintain your schedules. However, we do encourage its use
and please contact us to make improvements.</p>
<p>The creators of this site are:</p>
<p align="center"><strong>GroupAware (Team 7):</strong></p>
<p align="center">Matthew Gorbsky<br>
Derek Lahr<br>
Cameron Lefevre<br>
Heather Odenwelder<br>
Jonathan Singel<br>
</p>
<p align="center">&nbsp; </p></td>
</tr>
</table></td>
<td>&nbsp;</td>
</tr>
</table>
<p align="center" class="css">&nbsp;</p></td>
</tr>
<tr>
<td height="20" colspan="2" valign="top"><div align="center"><font size="1" face="Arial, Helvetica, sans-serif">This
site was created by IST students at The Pennsylvania State University.
Use of this system is subject to the terms and conditions set forth.<br>
Copyright 2005</font><font size="1"><br>
<br>
</font></div></td>
</tr>
</table>
</body>
</html>