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

View File

@@ -1,6 +1,6 @@
<?php
require_once "View.php";
require_once "SecureView.php";
/**
* Created by PhpStorm.
@@ -8,12 +8,16 @@ require_once "View.php";
* Date: 10/30/17
* Time: 10:37 AM
*/
class MinutesView extends View
class MinutesView extends SecureView
{
public function page(){
$body = <<<HTML
<div class="card">
<p>
Meeting for stuff and things.
</p>
</div>
HTML;
return $body;