-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_student_intern.php
76 lines (68 loc) · 2.27 KB
/
index_student_intern.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
<?php
session_start();
if(!isset($_SESSION['user']))
{
header("Location: vit.php");
}
if($_SESSION['user']=='admin')
{
header("Location: index_admin.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>Index of student</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['student_name']; ?> ">Log Out</a></li>
<div class="para">
<p> Training & Placement,VIT Pune</p>
</div>
</ul>
</div>
<div class="index_student_intern">
<ul class="list-unstyled4 list-horizontal-layout right-align">
<a href="profile_student.php" class="btn4 ">View Profile</a>
<a href="intern_visit_company.php" class="btn4">Visiting</a>
</ul>
<ul class="list-unstyled4 list-horizontal-layout right-align">
<a href="profile_student_update_int.php" class="btn5 ">Update Profile</a>
<a href="apply_intern.php" class="btn5">Apply For Company</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,1st Building<br>Vishwakarma Institute of Technology<br>Pune- 411037
</p>
</div>
<!--
<div class="header">
<h3> <a style="color:white "href="profile_student.php">View Profile</a></h3>
</div>
<div class="header">
<h3> <a style="color:white "href="profile_student_update_int.php">Update Profile</a></h3>
</div>
<div class="header">
<h3> <a style="color:white "href="apply_intern.php">Apply For Company</a></h3>
</div>
-->
</body>
</html>