cse435website/lib/MilestonesView.php
2017-10-30 11:11:36 -04:00

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;
}
}