From: Joe Z. <jz...@us...> - 2003-05-08 05:46:55
|
Update of /cvsroot/bobs/bobs/inc/templates In directory sc8-pr-cvs1:/tmp/cvs-serv5001/bobs/inc/templates Added Files: chgadminpwd.thtml Log Message: The admin password is now encrypted. There is a link at the bottom of the 'servers' page to change the admin password. --- NEW FILE: chgadminpwd.thtml --- <!-- rfasttemplate: Change Admin Password --> <center><h2> Change Administrator Password </h2></center> <div class="instruction">Type the current and new password and click OK.</div> <div class="errmsg">{ERRMSG}</div> <form action="{PHPSELF}" method="post"> <table align="center" border="0" > <tbody> <tr> <td align="right"><p>Current bobs administrator password: </td> <td align="left"><input type="password" name="curpwd"></td> <tr> <td align="right"><p>new password: </td> <td align="left"><input type="password" name="newpwd"></td> <tr> <td align="right"><p>new password (again): </td> <td align="left"><input type="password" name="newpwd2"></td> <!-- pressing Enter will not set "chg_pwd_OK", but this will--> <td align="left"><input type="hidden" name="chg_pwd_OK" value="OK"></td> </tr> <tr> <td align="center" colspan="2"> <br><input type="submit" name="chg_pwd_OK" value="Change Password"></td> </tr> </tbody> </table> </form> </body> </html> |