-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_admin.php
79 lines (67 loc) · 2.14 KB
/
index_admin.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
69
70
71
72
73
74
75
76
77
78
79
<?php
session_start();
if(!isset($_SESSION['user']))
{
header("Location: vit.php");
}
if($_SESSION['user']=='student_int' )
{
header("Location: index_student_intern.php");
}
if($_SESSION['user']=='student_place' )
{
header("Location: index_student_placement.php");
}
if($_SESSION['user']=='company')
{
header("Location: index_company.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Admin Index</title>
<link rel="stylesheet" type="text/css" href="1.css">
<link rel="shortcut icon" type="image/png" href="vit.png">
<link rel="stylesheet" type="text/css" href="stl.css">
</head>
<body >
<div class="list-unstyled3" >
<ul>
<li><a href="vit.php"><img src="vit.png" alt="VIT Pune" class="logo2" height="40" align="left"/></a></li>
<li style="float:right"><a href="logout.php" title="<?php echo $_SESSION['admin_name']; ?> ">Log Out</a></li>
<div class="para">
<p> Training & Placement,VIT Pune</p>
</div>
</ul>
</div>
<!--
<div class="header">
<h3> <a style="color:white "href="profile_student2.php">View Profile</a></h3>
</div>
<div class="header">
<h3> <a style="color:white "href="profile_student_update_place.php">Update Profile</a></h3>
</div> -->
<div class="index_admin">
<ul class="list-unstyled5 list-horizontal-layout right-align">
<a href="admin_company_approval.php" class="btn5 ">Company Approval</a>
<a href="admin_student_status.php" class="btn4">Change Student Status</a>
</ul>
<ul class="list-unstyled5 list-horizontal-layout right-align">
<a href="admin_register_admin.php" class="btn9">Add Admin</a>
<a href="admin_notification.php" class="btn9">Data</a>
</ul>
</div>
<div class="col-sm-4">
<h3 class="mg-md text-right tc-dim-gray">
Training & Placement Office
</h3>
<p class="text-right">
Ground Floor,1stt building<br>Vishwakarma Institute of Technology<br>Pune - 411037
</p>
</div>
</body>
</html>
<?php
//header("Location: logout.php");
?>