cse435website/lib/AboutView.php
Sean Joseph 1c927a643b Added about page.
The assets directory should store any pictures that the site uses.
Removed lingering directory
2017-10-26 20:08:41 -04:00

48 lines
1022 B
PHP

<?php
require_once "View.php";
/**
* Created by PhpStorm.
* User: sean
* Date: 10/26/17
* Time: 7:50 PM
*/
class AboutView extends View
{
public function page()
{
$body = <<<HTML
<h1>Roster:</h1>
<div class="team">
<div class="member">
<h2>Project Manager - James</h2>
<p>
blurb.
</p> </div>
<div class="member">
<h2>Artifacts Manager - Sean</h2>
<p>
blurb.
</p> </div>
<div class="member">
<h2>Project Facilitator - Stephen</h2>
<p>
blurb.
</p> </div>
<div class="member">
<h2>Safety/Security Engineer - Logan</h2>
<p>
blurb.
</p> </div>
<div class="member">
<h2>Domain Expert/Customer Liaison - Colin</h2>
<p>
blurb.
</p> </div>
</div>
HTML;
return $body;
}
}