1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#include header.html
#include menu.html
#include adminmenu.html
<form method="post">
<table align="center" border="0">
<tr>
<td align="center">Account</td>
</tr>
<tr>
<td align="center">
[[MESSAGE]]
<table border="0" width="400">
<tr><td>User Name :</td><td>[[USERNAME]]</td></tr>
<tr><td>Old Password :</td><td><input type="password" name="oldpassword" value=""></td></tr>
<tr><td>New Password :</td><td><input type="password" name="newpassword" value=""></td></tr>
</table>
</td>
</tr>
<tr>
<td align="left">
<input type="submit" name="setpassword" value="Set Password">
</td>
</tr>
</table>
</form>
#include footer.html
|