Added a general secure view for pages in the secure
section of the website.
This commit is contained in:
28
lib/MilestonesView.php
Normal file
28
lib/MilestonesView.php
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user