-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (54 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
session_start();
if ($_SESSION['u_id'] == 0) {
header("Location: ../login.php?loginFirst");
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>NWT | Home</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body class="index">
<header>
<div class="container">
<div id="branding">
<a href="index.php"><h1>NW<spam class="highlight">T</spam></h1></a>
</div>
<nav>
<form action="includes/logout-inc.php" method="POST">
<p> <?php echo $_SESSION['u_uid'] ?> </p> <!--Nombre del Usuario Logged In-->
<button type="submit" name="submit">Salir</button> <!--Boton de log out-->
</form>
</nav>
</div>
</header>
<section class="wrapper">
<div class="view third-effect">
<img src="" />
<a href="gm.php">
<div class="mask"></div>
</a>
<div class="content"><a href="gm.php" class="info">Game Master</a></div>
</div>
<div class="view third-effect">
<img src="" />
<a href="camp.php">
<div class="mask"></div>
</a>
<div class="content"><a href="camp.php" class="info">Campañas</a></div>
</div>
<div class="view third-effect">
<img src="" />
<a href="pj.php">
<div class="mask"></div>
</a>
<div class="content"><a href="pj.php" class="info">Personajes</a></div>
</div>
</section>
</body>
</html>