27eb6c15a7
### 1.1.0 (2.27.2004) ### ### Thanks to Miker, Yop, Mantagnana & Maebius for bug reports & feature ideas. :) - Added option to verify registration emails. - Added options to turn off display of news/online/babblebox in towns. - Added gameurl and adminemail fields to control table. - Added ability to ban a user without deleting the account. - Added rules for passwords (alphanumeric, maxlength=10). - Added page where users can change their passwords. - Added a page for lost passwords. - Fixed bugs in users.php to use doquery() instead of mysql_query(). - Fixed bug in installer program when creating the admin user account. - Changed the way towns and spells are handled in the user account. - Removed some deprecated code from the onlinechar() function.
26 lines
566 B
PHP
26 lines
566 B
PHP
<?php
|
|
$template = <<<THEVERYENDOFYOU
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="images/town_{{id}}.gif" alt="Welcome to {{name}}" title="Welcome to {{name}}" /></td></tr>
|
|
<tr><td>
|
|
<b>Town Options:</b><br />
|
|
<ul>
|
|
<li /><a href="index.php?do=inn">Rest at the Inn</a>
|
|
<li /><a href="index.php?do=buy">Buy Weapons/Armor</a>
|
|
<li /><a href="index.php?do=maps">Buy Maps</a>
|
|
</ul>
|
|
</td></tr>
|
|
<tr><td><center>
|
|
{{news}}
|
|
<br />
|
|
<table width="95%">
|
|
<tr><td width="50%">
|
|
{{whosonline}}
|
|
</td><td>
|
|
{{babblebox}}
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
</table>
|
|
THEVERYENDOFYOU;
|
|
?>
|