-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_page.php
More file actions
33 lines (28 loc) · 787 Bytes
/
Copy pathadmin_page.php
File metadata and controls
33 lines (28 loc) · 787 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
<?php
@include 'config.php';
session_start();
if(isset($_SESSION['admin_name'])){
header('location:login_form.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>admin page</title>
<!--custom css file-->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="content">
<h3>Hello <span>Admin</span></h3>
<h1>Welcome <span><!--?php echo $_SESSION['admin_name']?--></span></h1>
<p>You have logged in as an Admin</p>
<a href="logout.php" class="btn">Logout</a>
</div>
</div>
</body>
</html>