Added a general secure view for pages in the secure

section of the website.
This commit is contained in:
2017-10-30 11:11:36 -04:00
parent 2628cc8b80
commit 67030dc870
5 changed files with 80 additions and 5 deletions

28
lib/MilestonesView.php Normal file
View File

@@ -0,0 +1,28 @@
<?php
require_once "SecureView.php";
/**
* Created by PhpStorm.
* User: sean
* Date: 10/30/17
* Time: 10:37 AM
*/
class MilestonesView extends SecureView
{
public function page(){
$body = <<<HTML
<div class="card">
<p>
Baby's first words.
</p>
</div>
HTML;
return $body;
}
}