-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminhome.php
30 lines (30 loc) · 883 Bytes
/
adminhome.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(!isset($_SESSION["admin"]))
{
header("location:adminpanel.php");
exit();
}
include ('header.php');
?>
<div id="page-content">
<section class="box-content box-7" id="location">
<div class="clearfix">
<div class="box-item" >
<div class="container">
<div class="row">
<div class="col-md-8">
<h3>Admin Home</h3>
<div id="contact-form">
<form name="form1" method="post" action="contactus.php">
<h5><a href="changePassword.php">Change Password</a></h5>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<?php include ('footer.php'); ?>