family first notification
This commit is contained in:
14
index.php
14
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';
|
||||
|
||||
11
views/family.php
Normal file
11
views/family.php
Normal 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>
|
||||
<a href="/notify">No</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user