Begun adding the full admin backend

Admin users can now create the users table (means whoever sets up the
site only needs to create a database then non-tech admin users can
continue from there), close registration and start the game.
This commit is contained in:
jcreek
2014-08-21 19:05:09 +01:00
parent 227c7a4066
commit 9697849acf
6 changed files with 163 additions and 7 deletions
+15 -2
View File
@@ -9,11 +9,24 @@
<body>
<div id="main">
<form method="post" action="startgame.php" name="startgame" id="startgame">
<form method="post" action="admin-tools/create-users-table.php" name="create-users-table" id="create-users-table">
<fieldset>
<input type="submit" name="startgame" id="startgame" value="StartGame" />
<input type="submit" name="create-users-table" id="create-users-table" value="Create Users Table" />
</fieldset>
</form>
<form method="post" action="admin-tools/startgame.php" name="startgame" id="startgame">
<fieldset>
<input type="submit" name="startgame" id="startgame" value="Start Game" />
</fieldset>
</form>
<form method="post" action="admin-tools/close-registration.php" name="close-registration" id="close-registration">
<fieldset>
<input type="submit" name="close-registration" id="close-registration" value="Close Registration" />
</fieldset>
</form>