cse435website/lib/DraftsView.php
2017-12-04 01:26:01 -05:00

35 lines
961 B
PHP

<?php
require_once "SecureView.php";
/**
* Created by PhpStorm.
* User: sean
* Date: 10/30/17
* Time: 11:14 AM
*/
class DraftsView extends SecureView
{
public function page(){
$body = <<<HTML
<div class="card">
<h2>Questions and Risks for the Customer</h2>
<ul>
<li><a href="./Questions.pdf">Collated Submission</a></li>
<li><a href="./James_Questions.pdf">Questions and Risks from James</a></li>
<li><a href="./Stephen_Questions.pdf">Questions and Risks from Stephen</a></li>
<li><a href="./Sean_Questions.pdf">Questions and Risks from Sean</a></li>
<li><a href="./Colin_Questions.pdf">Questions and Risks from Colin</a></li>
<li><a href="./Logan_Questions.pdf">Questions and Risks from Logan</a></li>
<ul>
</div>
<div class="card">
<h2>Prototype Source</h2>
<p>Source can be found in <a href="https://git.cse.msu.edu/cse-435-team-6/automotive-paint-defect-analysis/">this git repository</a>.</p>
</div>
HTML;
return $body;
}
}