-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·38 lines (35 loc) · 1.03 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
session_start();
if(isset($_SESSION['username'])){
header('Location: uploadproject.php');
}
else{
?>
<html>
<head>
<title> Project Tub </title>
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.css">
<link rel = "stylesheet" type = "text/css" href = "css/style.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/projecttub.js"></script>
</head>
<header>
<img src="./img/banner.png" alt="Banner">
<?php include 'menubar.php'?>
</header>
<body>
<div class="row-fluid" id="mainWrapper">
<div class="span12">
<div class="row-fluid">
<div class="span4" id="registerWrapper"><?php include 'newuser.php'?></div>
<div class="span3" id="tubiconWrapper"><img src="./img/tub.png" alt="Tub Icon"></div>
<div class="span3 alert alert-info" id="loginWrapper"><?php include 'login.php'?></div>
</div>
</div>
</div>
</body>
<footer> © Copyright 2012-2013, www.projecttub.com , All rights reserved. </footer>
</html>
<?php
}
?>