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.
11 lines
519 B
PHP
11 lines
519 B
PHP
<?php
|
|
$template = <<<THEVERYENDOFYOU
|
|
<form action="users.php?do=lostpassword" method="post">
|
|
<table width="80%">
|
|
<tr><td colspan="2">If you've lost your password, enter your email address below and you will be sent a new one.</td></tr>
|
|
<tr><td width="20%">Email Address:</td><td><input type="text" name="email" size="30" maxlength="100" /></td></tr>
|
|
<tr><td colspan="2"><input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" /></td></tr>
|
|
</table>
|
|
</form>
|
|
THEVERYENDOFYOU;
|
|
?>
|