|
From: Benjamin C. <bc...@us...> - 2001-08-20 22:55:50
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory usw-pr-cvs1:/tmp/cvs-serv15260
Added Files:
user.html
Removed Files:
passwordform.html
Log Message:
A little more generic user prefs page
--- NEW FILE: user.html ---
<form action="{me}" method="post">
<input type="hidden" name="do" value="changepassword">
<table border="0" cellpadding="0" cellspacing="0" width="600">
<tr>
<td colspan="2" width="600"><b>Change Password</b></td>
</tr>
<tr>
<td colspan="2" width="600">
<font color="#ff0000">{error}</font>
</td>
</tr>
<tr>
<td colspan="2" width="600">Please enter your new password twice below</td>
</tr>
<tr>
<td>Password: </td>
<td><input type="password" name="pass1" value="{pass1}"></td>
</tr>
<tr>
<td>Verify: </td>
<td><input type="password" name="pass2" value="{pass2}"></td>
</tr>
<tr>
<td colspan="2">
<input type="reset">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
--- passwordform.html DELETED ---
|