forked from Kowshikreddy007/Botswithdots-SeatingAllotment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
45 lines (42 loc) · 1.27 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Profile</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/profile.css"/>
</head>
<body>
<?php
session_start();
if (isset($_SESSION['adminname']) && isset($_SESSION['password'])) {
?>
<a href="adminbranchyear.php" class="btn back-button btn-sm"><span class="glyphicon glyphicon-chevron-left"></span>back</a>
<div class="container vertical-align">
<div class="row">
<div class="col-xs-4 col-xs-push-4" style="background-color: #ffffff;">
<div class="panel panel-default">
<div class="panel-body">
<form class="form-horizontal content" role="form">
<div class="form-group">
<center><img class="img-circle" src="images/Administrator Male-52.png" heignt="150" width="150"/>
</center>
<br>
<center><label>A Name</label></center>
<center><label>Raigad</label></center>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<?php }
else{
$msg="you are not login!";
echo "<script type='text/javascript'>alert('$msg');</script>";
}?>
</body>
</html>