Added about page.

The assets directory should store any pictures that the site uses.
Removed lingering directory
This commit is contained in:
2017-10-26 20:08:41 -04:00
parent 6b30a2a506
commit 1c927a643b
7 changed files with 94 additions and 99 deletions

19
lib/LandingView.php Normal file
View File

@@ -0,0 +1,19 @@
<?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;
}
}