-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
29 lines (28 loc) · 727 Bytes
/
admin.php
File metadata and controls
29 lines (28 loc) · 727 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
<?php
include('connection.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Page</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<style>
body {
background-color: #f8f9fa;
color: #343a40;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<h1>Welcome to the Admin Page <?php echo $_SESSION['admin']; ?></h1>
</body>
</html>