<?
/**
Main.php
This is an example of the main page of a website. Here
users will be able to login. However, like on most sites
the login form doesn't just have to be on the main page,
but re-appear on subsequent pages, depending on whether
the user has logged in or not.
Written by: Jpmaster77 a.k.a. The Grandmaster of C++ (GMC)
Last Updated: August 26, 2004
*/
include("include/session.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta <title="" content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Photo Gallery</title>
<style type="text/css">
.style3 {
text-align: center;
}
.style4 {
border-width: 0px;
}
</style>
<link href="../../styles/style3.css" media="screen" rel="stylesheet" title="CSS" type="text/css" />
<style type="text/css">
.style1 {
color: #FFFFFF;
}
.style5 {
color: #8B0000;
text-decoration: underline;
}
.style6 {
text-align: center;
color: #8B0000;
text-decoration: underline;
}
.style7 {
color: #8B0000;
}
.style8 {
text-align: right;
}
</style>
</head>
<body style="background-image: url('treys%20pic.jpg'); background-attachment: fixed; background-repeat: repeat; background: #000080;">
<!-- Begin Container -->
<div id="container">
<!-- Begin Masthead -->
<div id="masthead">
<h1 class="style1">Trey Wanicke</h1>
<table style="width: 51%; height: 42px;">
<tbody>
<tr>
<td><?
/**
User has already logged in, so display relavent links, including
a link to the admin center if the user is an administrator.
*/
if($session->logged_in){
echo "Logged In";
echo "Welcome <b>$session->username</b>, you are logged in."
."[<a href=\"sneekpeek.php\">Sneek Peeks</a>] "
."[<a href=\"useredit.php\">Edit Account</a>] ";
if($session->isAdmin()){
echo "[<a href=\"admin/admin.php\">Admin Center</a>] ";
}
echo "[<a href=\"process.php\">Logout</a>]";
}
else{
?></td>
</tr></table>
<body>
</div>
<!-- End Masthead -->
<!-- Begin iMenu -->
<div id="navigation">
<ul>
<li><a href="../../index.htm">Home</a></li>
<li><a href="photo_gallery.php">Arcade</a></li>
<li><a href="../../contact/contact.htm">Suggest a Game</a></li>
<li><a href="http://www.and4.net">And4.net</a></li>
</ul>
</div>
<!-- End iMenu -->
<!-- Begin Left Column -->
<div id="column_l" class="style3" style="left: 0px; top: 0px; width: 625px">
<h2>Game list</h2>
<p>
<table style="width: 595px">
<tbody>
<tr>
<td class="style3" colspan="4">
<h3>New Games</h3>
</td>
</tr>
<tr>
<td class="style3" style="width: 148px; height: 91px;">
<a href="../../resume/1new/dynastystreet/dynastystreet.htm">
<img class="style4" height="100" src="../../resume/1new/dynastystreet/dynastystreet.jpg" width="100" /></a></td>
<tr>
<td class="style3" style="width: 148px">
<a href="../../resume/cubefield/cubefield.htm">Cube Field</a></td>
<td style="width: 148px">
<a href="../../resume/stormthehouse/stormthehouse.htm">Storm the
House 2</a></td>
<td style="width: 148px">
<a href="../../resume/helicoptergame/helicoptergame.htm">Helicopter
Game</a></td>
<td style="width: 148px">
<a href="../../resume/bloonstowerdefense/bloonstowerdefense3.htm">
Bloons Tower Defense 3</a></td>
</tr>
</tbody>
</table>
</p>
<p> </p>
</div>
<!-- End Left Column -->
<!-- Begin Right Column -->
<!-- End Right Column -->
<!-- Begin Footer -->
<div id="footer">
This website was built and is maintained by D J R of Reed Web Designs<br />
E-mail <a href="mailto:reedwebdesigns@gmail.com">reedwebdesigns@gmail.com</a><br />
<!-- Start of StatCounter Code -->
<script type="text/javascript">
var sc_project=4303188;
var sc_invisible=0;
var sc_partition=54;
var sc_click_stat=1;
var sc_security="705cdbf1";
</script>
<script src="http://www.statcounter.com/counter/counter.js" type="text/javascript"></script>
<noscript>
<div class="statcounter">
<a href="http://www.statcounter.com/" target="_blank" title="click tracking">
<img alt="click tracking" class="statcounter" src="http://c.statcounter.com/4303188/0/705cdbf1/0/" />
</a></div>
</noscript>
<a href="http://my.statcounter.com/project/standard/stats.php?project_id=4303188&guest=1">
View My Stats</a><!-- End Footer -->
</div></div></body></html> <?php
}
?>