-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreservation.php
More file actions
36 lines (30 loc) · 978 Bytes
/
reservation.php
File metadata and controls
36 lines (30 loc) · 978 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
34
35
36
<?php
include_once("header.php");
include_once("navigation.php");
include_once("sidebar.php");
?>
<div id="page-content-wrapper">
<br/>
<h1 class="panel-info" align="center">Reserve an event now!</h1>
<hr/>
<div class="col-md-4" align="center">
<br/>
<img src="img/debut.jpg" width="300px" class="img img-thumbnail showcaseimg">
<hr/>
<a href="debut-package.php" class="btn btn-warning showcasebtn">Reserve a Debut package</a>
</div>
<div class="col-md-4" align="center">
<br/>
<img src="img/wedding.jpg" width="300px" class="img img-thumbnail showcaseimg">
<hr/>
<a href="wedding-package.php" class="btn btn-warning showcasebtn">Reserve a Wedding package</a>
</div>
<div class="col-md-4" align="center">
<br/>
<img src="img/kiddie.jpg" width="300px" class="img img-thumbnail showcaseimg">
<hr/>
<a href="kiddie-package.php" class="btn btn-warning showcasebtn">Reserve a Debut package</a>
</div>
<?php
include_once("footeradmin.php");
?>