28 lines
342 B
PHP
28 lines
342 B
PHP
<?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;
|
|
}
|
|
|
|
} |