-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.php
47 lines (40 loc) · 947 Bytes
/
admin.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
46
47
<?php
include 'connect.php' ;
session_start();
if ($_SESSION['log'] == '')
{
header("location:adminindex.php");
}
include 'adminheader.php';
?>
<br>
<br>
<style >
.container{
border-spacing: 10px;
font-family: Montserrat, sans-serif;
font-size: 18px !important;
border: 2px solid grey;
margin-top: 50px;
margin-bottom: 200px;
padding-top: 50px;
padding-right: 120px;
padding-bottom: 50px;
padding-left: 150px;
align-content: center;
}
</style>
<html>
<head>
<link rel='stylesheet' href='index.css'>
<br><br>
<h1><center><b> Admins Data Base <img src="https://img.icons8.com/clouds/100/000000/lock-database-.png"/> </center></b></h1>
<div class="container">
<td><a href='adminbusdb.php'><button style="background-color: black ; border-color:black ">View Bus Bookings</button></a></td></td>
</tr>
</table>
</tr>
</div>
<?php include 'footer.php';
?>
</html>