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

@@ -37,6 +37,18 @@ $router->set404(function () {
// Static route: / (homepage) // 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/common/head.php';
include 'views/step1.php'; include 'views/step1.php';
include 'views/common/footer.php'; include 'views/common/footer.php';

11
views/family.php Normal file
View File

@@ -0,0 +1,11 @@
<div class="row">
<div class="col-md-12 mb-12">
<div class="mb-12 text-center">
<h3>Are you a current NCI family or alum?</h3>
<a href="/step-1" class="btn btn-success">Yes</a>&nbsp;
<a href="/notify">No</a>
</div>
</div>
</div>