mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Cleaned up namespaces (still have to do Map Project) and removed references to FFXIV Classic from the code. Removed the Launcher Editor project as it is no longer needed (host file editing is cleaner).
This commit is contained in:
50
data/www/login_su/control_panel.php
Normal file
50
data/www/login_su/control_panel.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
|
||||
include("config.php");
|
||||
include("database.php");
|
||||
include("control_panel_common.php");
|
||||
|
||||
$g_userCharacters = GetUserCharacters($g_databaseConnection, $g_userId);
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Seventh Umbral Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/reset.css" />
|
||||
<link rel="stylesheet" type="text/css" href="css/global.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<?php include("control_panel_header.php"); ?>
|
||||
<p>
|
||||
<div class="edit">
|
||||
<h2>Characters</h2>
|
||||
<br />
|
||||
<table class="editForm">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
<?php
|
||||
foreach($g_userCharacters as $character)
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $character["name"]; ?></td>
|
||||
<td>
|
||||
<a href="control_panel_edit_character.php?id=<?php echo $character["id"]; ?>">
|
||||
Edit
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user