Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
FormData
/
Fusion
/
account
/
admin
:
change-password.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php session_start(); //error_reporting(0); include('../includes/config.php'); if (strlen($_SESSION['adid']==0)) { header('location:logout.php'); } else{ //Change Password if(isset($_POST['change'])) { $cpwd=md5($_POST['currentpwd']); $npwd=md5($_POST['newpwd']); $uid=$_SESSION['adid']; $updatetTime = date( 'd-m-Y h:i:s A', time () ); //validate current password $ret=mysqli_query($con, "call sp_admincurrentpwdvalidate('$cpwd','$uid')"); $result=mysqli_num_rows($ret); if($result==0){ echo "<script>alert('Current password is wrong');</script>"; }else{ $ret->close(); $con->next_result(); $query=mysqli_query($con,"call sp_adminchangepwd('$npwd','$updatetTime','$uid')"); echo "<script>alert('Your password chnaged successfully');</script>"; echo "<script>window.location.href='change-password.php'</script>"; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>User Management System in PHP Using Stored Procedure</title> <!-- Custom fonts for this template--> <link href="../vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <!-- Custom styles for this template--> <link href="../css/sb-admin-2.min.css" rel="stylesheet"> <script type="text/javascript"> function checkpass() { if(document.changepwd.newpwd.value!=document.changepwd.confirmpwd.value) { alert('New Password and Repeat Password field does not match'); document.changepwd.confirmpwd.focus(); return false; } return true; } </script> </head> <body id="page-top"> <!-- Page Wrapper --> <div id="wrapper"> <!-- Sidebar --> <?php include_once('includes/sidebar.php');?> <!-- End of Sidebar --> <!-- Content Wrapper --> <div id="content-wrapper" class="d-flex flex-column"> <!-- Main Content --> <div id="content"> <!-- Topbar --> <!-- Topbar Navbar --> <?php include_once('includes/topbar.php');?> <!-- End of Topbar --> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800"><?php echo ucwords($_SESSION['fllname']);?>'s Profile | Change Password</h1> </div> <div class="row"> <div class="col-lg-12"> <!-- Default Card Example --> <div class="card mb-4"> <div class="card-header"> Change Password </div> <div class="card-body"> <form method="post" name="changepwd" onsubmit="return checkpass();"> <table class="table table-bordered dataTable" id="dataTable" width="100%" cellspacing="0" role="grid" aria-describedby="dataTable_info" style="width: 100%;"> <tr> <th>Current Password</th> <td> <input type="password" class="form-control form-control-user" id="currentpwd" name="currentpwd" required="true"> </td> </tr> <tr> <th>New Password</th> <td><input type="password" class="form-control form-control-user" id="newpwd" name="newpwd" required="true"> </td> </tr> <tr> <th>Confirm Password</th> <td> <input type="password" class="form-control form-control-user" id="confirmpwd" name="confirmpwd" required="true"> </td> </tr> </table> <button type="submit" name="change" class="btn btn-primary btn-user btn-block"> Change </button> </form> </div> </div> </div> </div> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <!-- Footer --> <?php include_once('includes/footer.php');?> <!-- End of Footer --> </div> <!-- End of Content Wrapper --> </div> <!-- End of Page Wrapper --> <!-- Scroll to Top Button--> <a class="scroll-to-top rounded" href="#page-top"> <i class="fas fa-angle-up"></i> </a> <!-- Logout Modal--> <?php include_once('includes/logout-modal.php');?> <!-- Bootstrap core JavaScript--> <script src="../vendor/jquery/jquery.min.js"></script> <script src="../vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <!-- Core plugin JavaScript--> <script src="../vendor/jquery-easing/jquery.easing.min.js"></script> <!-- Custom scripts for all pages--> <script src="../js/sb-admin-2.min.js"></script> </body> </html> <?php } ?>