mirror of
https://github.com/jcreek/Assassins-Mission-Control.git
synced 2026-07-12 18:43:43 +00:00
e5ab087e7f
Bug is on admin-tools/reset-all.php and seems to be failing to load base.php
32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<?php include "base.php"; ?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Assassins :: COMMAND CENTRE</title>
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="main" style='width: 90%;'>
|
|
<h1 style='text-align: center; padding-bottom: 15px;'>Command Centre Admin Tools</h1>
|
|
<div style='float:left; border-style: dotted; padding: 2%; width: 60%;'>
|
|
<p><a href="admin-tools/create-users-table.php">Create users table</a></p>
|
|
|
|
<p><a href="admin-tools/close-registration.php">Close registration</a></p>
|
|
|
|
<p><a href="admin-tools/startgame.php">Start the game</a></p>
|
|
|
|
<p><a href="admin-tools/release-addresses.php">Release addresses</a></p>
|
|
|
|
</div>
|
|
|
|
<div style='float:right; border-style: dotted; padding: 2%; width: 20%;'>
|
|
<p><a href="admin-tools/adminer-sql.php">Log in to the database and modify the table directly</a>
|
|
<br>N.B. You will need to know the database server, user, password and database name. The table to modify is 'usersfinal' once the game has started.</p>
|
|
<p><a href="admin-tools/reset-all.php">Reset everything ready for the next game</a>
|
|
<br>If you do this you will erase the current game.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|