family first notification

This commit is contained in:
Chris Smith
2019-03-07 14:29:14 -06:00
parent 42c2bc4c6f
commit 6a71a57ef4
2 changed files with 24 additions and 1 deletions

View File

@@ -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';