-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdminHome.php
45 lines (36 loc) · 1.6 KB
/
AdminHome.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>
<head>
<title>Explore Tours</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/styles-prathibha.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Lora&family=Merriweather:wght@300&display=swap" rel="stylesheet">
<style>
body{
background-image:url("img/sim1.jpg");
background-color: #fff;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
</head>
<body>
<div class="wrapper">
<?php require_once('header.php'); ?>
<div class="adlog clearfix" align="center">
<h1>Upcoming Event Viewer</h1>
<a href="UpcomingEventViewer.php">Go to Upcoming Event Viewer</a>
<br>
<a href="UpcomingEventsAdding.php">Go to Upcoming Event Adder</a>
<h1>Things to do Viewer</h1>
<a href="ttdViewer.php">Go to Things to do Viewer</a>
<br>
<a href="ttdAdding.php">Go to Things to do Adder</a>
</div> <!-- adlog -->
<?php require_once('footer.php'); ?>
</div><!--wrapper-->
</body>
</html>