12 lines
586 B
PHP
12 lines
586 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
<h3>Welcome to the Dragon Scourge Administrator.</h3>
|
||
|
Please select a tab above to control various settings and attributes for your game.<br /><br />
|
||
|
Your game has {{accounts}} accounts with {{characters}} active characters. {{guildchars}} are members of {{guilds}} Guilds.<br /><br />
|
||
|
|
||
|
<a href="../index.php">Click here</a> to return to your game.<br /><br /><br />
|
||
|
<span class="grey">The awesome Silk icons, used throughout the control panel, were created by <a href="http://www.famfamfam.com/lab/icons/silk/" target="_new">FamFamFam.com</a>.</span>
|
||
|
END;
|
||
|
|
||
|
?>
|