From 48b97eb0c82eeb93a6507e676d96b2315a02f4b8 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Mon, 8 Apr 2019 12:00:30 -0500 Subject: [PATCH] adding link --- index.php | 6 ++++++ views/parents.php | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 views/parents.php diff --git a/index.php b/index.php index 9fa22c5..9a2e290 100644 --- a/index.php +++ b/index.php @@ -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]); diff --git a/views/parents.php b/views/parents.php new file mode 100644 index 0000000..18a711c --- /dev/null +++ b/views/parents.php @@ -0,0 +1,11 @@ + +
+
+

+
+
+
+
+
+ +
\ No newline at end of file