-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_result.php
37 lines (36 loc) · 1.46 KB
/
user_result.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<?php include 'config/config.php'; ?>
<?php include 'session_check.php'; ?>
<link rel="stylesheet" href="<?php echo constant("HOST11") . '/web/css/UserStyleSheet.css' ?>" type="text/css" />
<title>Online Thesis Manager</title>
</head>
<body>
<div id="bodyPanel">
<div id="adminHeader">
<div id="adminHeaderTitle">
<?php include 'Macros/headerImage.php';?>
</div>
<div id="adminHeaderLocation">Department of CSE, IIT Guwahati</div>
</div>
<div id="adminVMenu">
<?php include 'Macros/VerticalMenuItems.php'; ?>
</div>
<div id="adminMiddle">
<div style="color: green;font-size: 20px; text-align: center;width: 100%">Welcome, <?php echo strtoupper($_SESSION['name']) ?></div>
<div style="padding-top: 100px;text-align: center;font-size: 25px;color: #006600">
<?php
echo $_SESSION['queryString'];
unset($_SESSION['queryString']);
?>
</div>
</div>
<div id="adminFooter">
<?php include 'Macros/AdminFooter.php'; ?>
</div>
</div>
<span style="font-weight: normal"></span>
</body>
</html>