<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
session_start();
//if the user has not logged in
if(!session_is_registered(username)) {
header('Location: login.php');
die();
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="digital, media, film, movie, preservation, home movies, archives, consulting, consultant, summit, day, photo" />
<meta name="description" content="Business focused on moving image preservation" />
<meta name="copyright" content="copyright 2006-2012 SummitDay Media" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<title>SummitDay Media - Client Login</title>
<link rel="stylesheet" type="text/css" media="screen" href="styles.css" />
</head>
<body>
<div id="gradient">
<div id="container"> <!-- container start -->
<div id="header"> <!-- header start -->
<img src="images/web-banner.png" alt="Summit Day Media Banner" />
</div> <!-- header stop -->
<div id="sidebar"> <!-- sidebar start -->
<div id="navcontainer"> <!-- nav start -->
<ul>
<li><a href="index.html" rel="self" class="link1" >Home</a></li>
<li><a href="aboutUs.html" rel="self" class="link2" >About Us</a></li>
<li><a href="contact.html" rel="self" class="link3" >Contact Us</a></li>
<li><a href="services.html" rel="self" class="link4" >Preservation Services</a></li>
<li><a href="beyond.html" rel="self" class="link5" >Beyond Preservation</a></li>
<li><a href="vault.html" rel="self" class="link6" >Vaulting Preservation</a></li>
<li><a href="format.html" rel="self" class="link7" >Format Guide</a></li>
<li><a href="amia.html" rel="self" class="link8" >AMIA</a></li>
<li><a href="login.html" rel="external" class="link9">Client Log-In</a></li>
</ul>
</div> <!-- nav stop -->
<div id="sidebarLogo">
<img src="images/contactLogo.png" alt="contact logo" />
</div>
</div> <!-- sidebar stop -->
<div id="contents"> <!-- contents start -->
<div class="textContent"> <!-- textContent start -->
Content Goes Here
<br />
<a href='logout.php'> LOG OUT</a>
</div> <!-- textContent stop -->
</div> <!-- contents stop -->
<div id="footer"> <!-- footer start -->
<br />
<p id="footNav">
<a href="index.html">Home</a> |
<a href="aboutUs.html">About Us</a> |
<a href="contact.html">Contact</a> |
<a href="services.html">Services</a> |
<a href="beyond.html">Beyond</a> |
<a href="vault.html">Vaulting</a> |
<a href="format.html">Format Guide</a> |
<a href="login.html">Client Login</a>
</p>
<br />
<p>© 2006-2012 SummitDay Media. All rights reserved.</p>
</div> <!-- footer stop -->
</div> <!-- container stop -->
</div> <!-- gradient stop -->
</body>
</html>