-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminprofile.php
More file actions
42 lines (35 loc) · 889 Bytes
/
Copy pathadminprofile.php
File metadata and controls
42 lines (35 loc) · 889 Bytes
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
<?php
/**
* User: Jonnadula Prithvi
* DBMS Project
* Relief Estates
*/
session_start();
if(!$_SESSION['username'])
{
header("Location: adminlogin.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Admin Profile:Relief Estates</title>
<link href="style/login.css" rel='stylesheet' type='text/css'/>
<link rel="shortcut icon" type="image/x-icon" href="img/logo.png"/>
</head>
<body>
<a href="adminhome.php"><img src="img/logo.png" id="logo"></a>
<a href=""> <img src="img/title.png" id="title1" ></a>
<div class="logindetails1">
<a href="adminprofile.php"> <?php
echo $_SESSION['name'];
?></a>
</div>
<a href="logout.php"><img src="img/logout.png" class="logoutpic1"></a>
<div class="loginoption">
<form method="post">
<div class="adminbutton"> <a href="updateadmin.php" >Update Password</a></div>
</form>
</div>
</body>
</html>