Just archiving this project from my Open Source Software class.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
if($fileName == "Sign In"){
|
||||
$signed = "<a class='sign-in' href='register.php'>Register Now!</a>";
|
||||
}elseif($fileName == "Register"){
|
||||
$signed = "<a class='sign-in' href='index.php'>Sign In</a>";
|
||||
}else{
|
||||
$signed = "<a class='sign-in' href='#' >We done goofed...</a>";
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<body>
|
||||
<section class="login">
|
||||
<title><?php echo $fileName; ?> | Computers R Us</title>
|
||||
<link rel="shortcut icon" href="images/favico.ico">
|
||||
<link href="css/main.css" rel="stylesheet"/>
|
||||
<link href="css/black-tie/jquery-ui-1.10.3.custom.min.css" rel="stylesheet" type="text/css" />
|
||||
<style type="text/css">
|
||||
a {text-decoration: none; }
|
||||
h5 a:hover{text-decoration:underline; }
|
||||
.login{
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
<header><?php echo $signed; ?></header>
|
||||
<nav class="ui-widget-header">
|
||||
<ul>
|
||||
<li><a href="home.php">Home</a></li>
|
||||
<li><a href="store.php">Store</a></li>
|
||||
<li><a href="about-us.php">About Us</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user