-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange-password.php
134 lines (120 loc) · 5.87 KB
/
change-password.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
error_reporting(0);
if (strlen($_SESSION['jpaid']==0)) {
header('location:logout.php');
} else{
if(isset($_POST['submit']))
{
$adminid=$_SESSION['jpaid'];
$cpassword=md5($_POST['currentpassword']);
$newpassword=md5($_POST['newpassword']);
$sql ="SELECT ID FROM tbladmin WHERE ID=:adminid and Password=:cpassword";
$query= $dbh -> prepare($sql);
$query-> bindParam(':adminid', $adminid, PDO::PARAM_STR);
$query-> bindParam(':cpassword', $cpassword, PDO::PARAM_STR);
$query-> execute();
$results = $query -> fetchAll(PDO::FETCH_OBJ);
if($query -> rowCount() > 0)
{
$con="update tbladmin set Password=:newpassword where ID=:adminid";
$chngpwd1 = $dbh->prepare($con);
$chngpwd1-> bindParam(':adminid', $adminid, PDO::PARAM_STR);
$chngpwd1-> bindParam(':newpassword', $newpassword, PDO::PARAM_STR);
$chngpwd1->execute();
echo '<script>alert("Your password successully changed")</script>';
} else {
echo '<script>alert("Your current password is wrong")</script>';
}
}
?>
<!doctype html>
<html lang="en" class="no-focus"> <!--<![endif]-->
<head>
<title>Job Portal - Change Password</title>
<link rel="stylesheet" id="css-main" href="assets/css/codebase.min.css">
<script type="text/javascript">
function checkpass()
{
if(document.changepassword.newpassword.value!=document.changepassword.confirmpassword.value)
{
alert('New Password and Confirm Password field does not match');
document.changepassword.confirmpassword.focus();
return false;
}
return true;
}
</script>
</head>
<body>
<div id="page-container" class="sidebar-o sidebar-inverse side-scroll page-header-fixed main-content-narrow">
<?php include_once('includes/sidebar.php');?>
<?php include_once('includes/header.php');?>
<!-- Main Container -->
<main id="main-container">
<!-- Page Content -->
<div class="content">
<!-- Register Forms -->
<h2 class="content-heading">Change Password</h2>
<div class="row">
<div class="col-md-12">
<!-- Bootstrap Register -->
<div class="block block-themed">
<div class="block-header bg-gd-emerald">
<h3 class="block-title">Change Password</h3>
</div>
<div class="block-content">
<form method="post" onsubmit="return checkpass();" name="changepassword">
<div class="form-group row">
<label class="col-12" for="register1-username">Current Password:</label>
<div class="col-12">
<input type="password" class="form-control" name="currentpassword" id="currentpassword"required='true'>
</div>
</div>
<div class="form-group row">
<label class="col-12" for="register1-email">New Password:</label>
<div class="col-12">
<input type="password" class="form-control" name="newpassword" class="form-control" required="true">
</div>
</div>
<div class="form-group row">
<label class="col-12" for="register1-password">Confirm Password:</label>
<div class="col-12">
<input type="password" class="form-control" name="confirmpassword" id="confirmpassword" required='true'>
</div>
</div>
<div class="form-group row">
<div class="col-12">
<button type="submit" class="btn btn-alt-success" name="submit">
<i class="fa fa-plus mr-5"></i> Change
</button>
</div>
</div>
</form>
</div>
</div>
<!-- END Bootstrap Register -->
</div>
</div>
</div>
<!-- END Page Content -->
</main>
<!-- END Main Container -->
<?php include_once('includes/footer.php');?>
</div>
<!-- END Page Container -->
<!-- Codebase Core JS -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap.min.js"></script>
<script src="assets/js/core/jquery.slimscroll.min.js"></script>
<script src="assets/js/core/jquery.scrollLock.min.js"></script>
<script src="assets/js/core/jquery.appear.min.js"></script>
<script src="assets/js/core/jquery.countTo.min.js"></script>
<script src="assets/js/core/js.cookie.min.js"></script>
<script src="assets/js/codebase.js"></script>
</body>
</html>
<?php } ?>