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 @@ +
\ No newline at end of file