-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwelcomeadmin.php
30 lines (22 loc) · 977 Bytes
/
welcomeadmin.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
<?php
session_start();
if ( $_SESSION[ "umail" ] == "" || $_SESSION[ "umail" ] == NULL ) {
header( 'Location:AdminLogin.php' );
}
$userid = $_SESSION[ "umail" ];
?>
<!DOCTYPE HTML>
<?php include('adminhead.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<!--Welcome page for admin-->
<h3> Welcome <a href="welcomeadmin">Admin</a></h3>
<a href="RegestrationDetails"> <button type="submit" class="btn btn-primary">Registration Details</button></a>
<a href="StudentDetails"><button href="" type="submit" class="btn btn-primary">Student Details</button></a>
<a href="FacultyDetails"><button href="" type="submit" class="btn btn-primary">Faculty Details</button></a>
<a href="guestdetails"><button href="" type="submit" class="btn btn-primary">Guest Details</button></a>
<a href="logoutadmin"><button href="" type="submit" class="btn btn-danger">Logout</button></a>
</div>
</div>
<?php include('allfoot.php'); ?>