2017-02-05 10:58:20 -06:00
|
|
|
<?php
|
|
|
|
$template = <<<THEVERYENDOFYOU
|
|
|
|
<form action="users.php?do=changepassword" method="post">
|
|
|
|
<table width="100%">
|
|
|
|
<tr><td colspan="2">Use the form below to change your password. All fields are required. New passwords must be 10 alphanumeric characters or less.</td></tr>
|
|
|
|
<tr><td width="20%">Username:</td><td><input type="text" name="username" size="30" maxlength="30" /></td></tr>
|
|
|
|
<tr><td>Old Password:</td><td><input type="password" name="oldpass" size="20" /></td></tr>
|
|
|
|
<tr><td>New Password:</td><td><input type="password" name="newpass1" size="20" maxlength="10" /></td></tr>
|
2024-12-12 11:28:19 -06:00
|
|
|
<tr><td>Verify New Password:</td><td><input type="password" name="newpass2" size="20" maxlength="10" /><br><br><br></td></tr>
|
2017-02-05 10:58:20 -06:00
|
|
|
<tr><td colspan="2"><input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" /></td></tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
THEVERYENDOFYOU;
|
2024-12-12 11:28:19 -06:00
|
|
|
?>
|