forked from iiitncommunity/hostel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
38 lines (35 loc) · 1.13 KB
/
index.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
<?php
require 'header.php'
?>
<br>
<main class="jumbotron text-success" style="text-align:center">
<?php
if(isset($_SESSION['type'])){
if($_SESSION['type']=='student'){
echo ' <p>You are logged in as student</p>';
echo ' <p>Hello '.$_SESSION['user']['fname'].', welcome to the site of iiitn Hostel</p>';
}
else if($_SESSION['type']=='warden'){
echo ' <p>You are logged in as warden</p>';
echo ' <p>Hello '.$_SESSION['user']['fname'].', welcome to the site of iiitn Hostel</p>';
}
else if($_SESSION['type']=='hmc'){
echo ' <p>You are logged in as hmc</p>';
echo ' <p>Hello '.$_SESSION['user']['fname'].', welcome to the site of iiitn Hostel</p>';
}
else if($_SESSION['type']=='staff'){
echo ' <p>You are logged in as staff</p>';
echo ' <p>Hello '.$_SESSION['user']['fname'].', welcome to the site of iiitn Hostel</p>';
}
}
else{
echo ' <p>You are logged out</p>';
}
?>
</main>
<?php
require 'home.php'
?>
<?php
require 'footer.php'
?>