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.
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
$template = <<<THEVERYENDOFYOU
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="images/button_location.gif" alt="Location" title="Location" /></td></tr>
|
|
<tr><td>
|
|
Currently: {{currentaction}}<br />
|
|
Latitude: {{latitude}}<br />
|
|
Longitude: {{longitude}}<br />
|
|
<a href="javascript:openmappopup()">View Map</a><br /><br />
|
|
<form action="index.php?do=move" method="post">
|
|
<center>
|
|
<input name="north" type="submit" value="North" /><br />
|
|
<input name="west" type="submit" value="West" /><input name="east" type="submit" value="East" /><br />
|
|
<input name="south" type="submit" value="South" />
|
|
</center>
|
|
</form>
|
|
</td></tr>
|
|
</table><br />
|
|
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="images/button_towns.gif" alt="Towns" title="Towns" /></td></tr>
|
|
<tr><td>
|
|
{{currenttown}}
|
|
Travel To:<br />
|
|
{{townslist}}
|
|
</td></tr>
|
|
</table><br />
|
|
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="images/button_functions.gif" alt="Functions" title="Functions" /></td></tr>
|
|
<tr><td>
|
|
{{forumslink}}
|
|
{{adminlink}}
|
|
<a href="users.php?do=changepassword">Change Password</a><br />
|
|
<a href="login.php?do=logout">Log Out</a><br />
|
|
<a href="help.php">Help</a>
|
|
</td></tr>
|
|
</table><br />
|
|
THEVERYENDOFYOU;
|
|
?>
|