mirror of
https://github.com/glmdev/eecs448-lab10
synced 2024-10-27 19:14:00 +00:00
18 lines
473 B
HTML
18 lines
473 B
HTML
<?php
|
|
|
|
require './configuration.php';
|
|
|
|
$page = new common\Page;
|
|
|
|
$page->title('EECS 448 Lab 10 - Exercise 4')
|
|
->header('Admin Home')
|
|
->writes("
|
|
<ul>
|
|
<li><a href=\"" . system_url('ViewUsers.php') . "\">View Users</a></li>
|
|
<li><a href=\"" . system_url('ViewUserPosts.html') . "\">View Posts by User</a></li>
|
|
<li><a href=\"" . system_url('DeletePost.html') . "\">Delete Posts</a></li>
|
|
</ul>
|
|
");
|
|
|
|
$page->write();
|