-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportal_dashboard.php
43 lines (40 loc) · 1.31 KB
/
portal_dashboard.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
<?php
include 'server.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
EMPOWHER|Profile
</title>
<link rel="stylesheet" href="design.css" type="text/css">
</head>
<body>
<div class="bg"></div>
<div class="top">
<ul>
<b>
<li><a href="portal_users.php" target="blank">List Users</a></li>
<li><a href="portal_questions.php" target="blank">Add Questions For Assessment</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Statistics</a>
<div class="dropdown-content">
<a href="resumestats.php">Resume</a>
<a href="assessmentstats.php">Assessment</a>
<a href="userstats.php">UserActivity</a>
</div>
<li class="heading"><a href="profile.php" target="blank">
<?php if($_SESSION['username']!=''){echo "Hi ".$_SESSION['username'];}else{ echo "Profile";}?></a>
</li>
</b>
<li class="heading"><a href="index.php" target="blank">EMPOWHER</a></li></b>
<li class="heading"><a href="signin.php" target="blank">Sign In</a></li></b>
<li class="heading"><a href="register.html" target="blank">Register</a></li></b>
</div>
</li>
</ul>
</div>
</body>
</html>