-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminhome.php
35 lines (33 loc) · 1.01 KB
/
adminhome.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
<?php
require_once 'config.php';
session_start();
$uname = $_SESSION['username'];
$email = $_SESSION['email-log'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Fantasy WC 2022 Admin Dashboard</title>
<link rel="stylesheet" type="text/css" href="styleadminhome.css">
</head>
<body>
<header>
<div class="main">
<ul>
<li class="active"><a href="#">Admin Home</a></li>
<li><a href="usertest.php">Users</a></li>
<li><a href="fantasyadmin.php">Fantasy Teams</a></li>
<li><a href="control_player.php">Players</a></li>
<li><a href="admin_fixture.php">Fixture</a></li>
<li><a href="Points_Room.php">Points</a></li>
</ul>
</div>
<div class="title">
<h1>Admin Dashboard</h1>
</div>
<div class="button">
<a href="logout.php" class="btn">Logout</a>
</div>
</header>
</body>
</html>