The assets directory should store any pictures that the site uses. Removed lingering directory
19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
require_once "View.php";
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sean
|
|
* Date: 10/26/17
|
|
* Time: 7:52 PM
|
|
*/
|
|
class LandingView extends View
|
|
{
|
|
public function page()
|
|
{
|
|
$body = <<<HTML
|
|
<h1>Paint Defect Reporting!</h1>
|
|
<p>Find those defects, boys!</p>
|
|
HTML;
|
|
return $body;
|
|
}
|
|
} |