adding link

This commit is contained in:
Chris Smith
2019-04-08 12:00:30 -05:00
parent 343e3f81af
commit 48b97eb0c8
2 changed files with 17 additions and 0 deletions

View File

@@ -353,6 +353,12 @@ $router->get('/gallery', function(){
include 'views/common/footer.php';
});
$router->get('/parents', function(){
include 'views/common/head.php';
include 'views/parents.php';
include 'views/common/footer.php';
});
$router->get('/thank-you/{uuid}', function ($uuid) {
$order = R::findOne('orders', ' uuid = ?', [$uuid]);
$guests = R::findAll('guests', ' order_id = ?', [$order->id]);

11
views/parents.php Normal file
View File

@@ -0,0 +1,11 @@
<div class="row">
<div class="col-md-12 mb-12 text-center">
<h3></h3>
<br/>
<br/>
<br/>
<br/>
</div>
</div>