| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/adminPanel/ |
Upload File : |
<?php
include_once("session.php");
include_once("settings.php");
include_once("functions.php");
?>
<LINK href="mel.css" type=text/css
rel=stylesheet><LINK href="sdmenu.css"
type=text/css rel=stylesheet>
<script language="JavaScript">
function validate()
{
var password=document.change_password_form.new_password.value;
if ((password == "") || (password.length < 4))
{
alert("\nThe PASSWORD field is either empty or less than 4 chars.\n\nPlease re-enter your Password.")
document.change_password_form.new_password.focus();
return false;
}
var str1 = document.change_password_form.confirm_password.value;
if (password != str1)
{
alert("Passwords typed do not match, please re-enter your passwords.\n\n");
document.change_password_form.confirm_password.focus();
return false;
}
return true;
}
</script>
<table width="94%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form id="change_password_form" name="change_password_form" action="change_password_cofirm.php" method="post" onsubmit="return validate();">
<fieldset>
<legend>CHANGE PASSWORD FORM</legend>
<table width="97%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td width="90%" height="26" class="general">Old Password :</td>
<td width="30%" height="26" > <input name="old_password" type="password" AUTOCOMPLETE="OFF" size="22" maxlength="20" /></td>
</tr>
<tr>
<td height="26" class="general">New Password : </td>
<td height="26"><input name="new_password" type="password" size="22" maxlength="20" /></td>
</tr>
<tr>
<td height="26" class="general">Re-Type Password : </td>
<td height="26"><input name="confirm_password" type="password" id="confirm_password" size="22" maxlength="20" /></td>
</tr>
<tr align="center">
<td height="26" colspan="2"><label for="label">
<input type="submit" name="Submit" value="Login" class="button" />
<input type="reset" name="Submit" value="Reset" class="button" />
<input name="page" type="hidden" id="page" value="password">
<input name="action" type="hidden" id="action" value="passwordchange">
<input name="username" type="hidden" id="username" value="<?=$_SESSION["username"];?>">
</label></td>
</tr>
</table>
</fieldset>
</form></td>
</tr>
</table>