Added site style to the secure pages. Renamed LoginController to SecureLoginController.
22 lines
239 B
PHP
22 lines
239 B
PHP
<?php
|
|
|
|
require_once "View.php";
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sean
|
|
* Date: 10/30/17
|
|
* Time: 10:37 AM
|
|
*/
|
|
class MinutesView extends View
|
|
{
|
|
|
|
public function page(){
|
|
$body = <<<HTML
|
|
|
|
HTML;
|
|
|
|
return $body;
|
|
}
|
|
|
|
} |