Draft page added

This commit is contained in:
2017-10-30 11:18:53 -04:00
parent 67030dc870
commit e26a57c744
3 changed files with 49 additions and 0 deletions

26
lib/DraftsView.php Normal file
View File

@@ -0,0 +1,26 @@
<?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>Draft 1</h2>
<p>
Lol, just do the thing, bro!
</p>
</div>
HTML;
return $body;
}
}