forked from jimit105/Project-Online-Shopping-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfandom.php
68 lines (58 loc) · 1.43 KB
/
fandom.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
session_start();
if(!isset($_SESSION['username'])){
header("Location: index.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="res/ThinkGeek-pt.png" sizes="16x16">
<link rel="stylesheet" type="text/css" href="css/fandom.css">
<link href="https://fonts.googleapis.com/css?family=Righteous" rel="stylesheet">
<title>Choose your Fandom- ThinkGeek</title>
<style type="text/css">
#logo{
width: 20.1%;
float: left;
}
body{
margin-top: 3em;
margin-left: 3em;
}
</style>
</head>
<body bgcolor=black>
<div id="logo">
<img src="res/thinkgeek-png.png" width="100%">
</div>
<div id=login>
<a href="destroy.php"><span id="logoutButton">Log Out</span></a><br><br>
<?php echo $_SESSION['username'];?>
</div>
<br>
<div id="header"> <strong>Choose Your Fandom</strong></div>
<table cellspacing="30px" cellpadding="10px">
<tr>
<td><div id="got">
<a href="got.php" style="text-decoration: none;">
<img class="circle" src="res/main/got.png">
<p><strong>Game of Thrones</strong></p>
</a>
</div></td>
<td><div id="hp">
<a href="hp.php" style="text-decoration: none;">
<img class="circle" src="res/main/hp.png">
<p><strong>Harry Potter</strong></p>
</a>
</div></td>
<td><div id="hg">
<a href="hg.php" style="text-decoration: none;">
<img class="circle" src="res/main/hg.png">
<p><strong>Hunger Games</strong></p>
</a>
</div></td>
</tr>
</table>
</body>
</html>