43 lines
654 B
PHP
43 lines
654 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
|
|
</li>
|
|
<li>
|
|
Dec. 4: Present and Demonstrate the Project
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
HTML;
|
|
|
|
return $body;
|
|
}
|
|
|
|
} |