From 6a71a57ef48257598efdbc78f401a79f408474ef Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 7 Mar 2019 14:29:14 -0600 Subject: [PATCH] family first notification --- index.php | 14 +++++++++++++- views/family.php | 11 +++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 views/family.php diff --git a/index.php b/index.php index b823b26..f6d928c 100644 --- a/index.php +++ b/index.php @@ -36,7 +36,19 @@ $router->set404(function () { }); // Static route: / (homepage) -$router->get('/', function () { +$router->get('/', function(){ + include 'views/common/head.php'; + include 'views/family.php'; + include 'views/common/footer.php'; +}); + +$router->get('/notify', function(){ + include 'views/common/head.php'; + include 'views/notify.php'; + include 'views/common/footer.php'; +}); + +$router->get('/step-1', function () { include 'views/common/head.php'; include 'views/step1.php'; include 'views/common/footer.php'; diff --git a/views/family.php b/views/family.php new file mode 100644 index 0000000..d633ad3 --- /dev/null +++ b/views/family.php @@ -0,0 +1,11 @@ +
+
+
+

Are you a current NCI family or alum?

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