begin populating admin functionality
This commit is contained in:
parent
5a3bd7eadb
commit
13507e4704
17
src/webserver/admin/index.php
Normal file
17
src/webserver/admin/index.php
Normal 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
4
src/webserver/footer.php
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
<p class="copyright">Copyright © 2024 by Mountain Town LLC. All rights reserved.</p>
|
||||
</body>
|
||||
</html>
|
6
src/webserver/header.php
Normal file
6
src/webserver/header.php
Normal file
@ -0,0 +1,6 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>All Whomst Wander - Development Server</title>
|
||||
</head>
|
||||
<body>
|
Loading…
Reference in New Issue
Block a user