54 lines
949 B
PHP
54 lines
949 B
PHP
<?php
|
|
|
|
require_once "SecureView.php";
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sean
|
|
* Date: 10/30/17
|
|
* Time: 10:37 AM
|
|
*/
|
|
class MilestonesView extends SecureView
|
|
{
|
|
|
|
public function page(){
|
|
$body = <<<HTML
|
|
|
|
<div class="card">
|
|
<h2>Important Deadlines</h2>
|
|
<ul>
|
|
<li>
|
|
Oct. 24: Submit Questions and Risks Regarding the Project
|
|
</li>
|
|
<li>
|
|
Oct. 30: Develop Skeletal Website and Submit Info
|
|
</li>
|
|
<li>
|
|
Nov. 1: Submit Project Requirements Definition Document
|
|
</li>
|
|
<li>
|
|
Nov. 13: Submit Software Requirements Specification Document V1
|
|
</li>
|
|
<li>
|
|
Nov. 15: Submit Peer Review of the First Set of Deliverables
|
|
</li>
|
|
<li>
|
|
Nov. 20: Complete Prototype 1 and Submit Review of SRS
|
|
</li>
|
|
<li>
|
|
Nov. 29: Submit Software Requirements Specification Document V2
|
|
</li>
|
|
<li>
|
|
Dec. 4: Complete Prototype 2
|
|
</li>
|
|
<li>
|
|
Dec. 6: Present the Project and Submit Peer Review of the Second Set of Deliverables
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
HTML;
|
|
|
|
return $body;
|
|
}
|
|
|
|
} |