begin populating admin functionality

This commit is contained in:
Sundog Jones 2024-05-06 10:41:03 -04:00
parent 5a3bd7eadb
commit 13507e4704
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
require_once(realpath(dirname(__FILE__) . '/../db/config.php'));
require_once(realpath(dirname(__FILE__) . '/../header.php'));
?>
<h1>Wander Admin</h1>
<h2>Tables</h2>
<p><a href="players.php">Players</a></p>
<p><a href="pois.php">Points of Interest</a></p>
<p><a href="npcs.php">NPCs</a></p>
<p><a href="items.php">Items</a></p>
<?php
require_once(realpath(dirname(__FILE__) . '/../footer.php'));
?>

4
src/webserver/footer.php Normal file
View File

@ -0,0 +1,4 @@
<p class="copyright">Copyright &copy; 2024 by Mountain Town LLC. All rights reserved.</p>
</body>
</html>

6
src/webserver/header.php Normal file
View File

@ -0,0 +1,6 @@
<!doctype html>
<html lang="en">
<head>
<title>All Whomst Wander - Development Server</title>
</head>
<body>