-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-password-change.php
122 lines (92 loc) · 4.3 KB
/
admin-password-change.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
<?php
require 'authentication.php'; // admin authentication check
// auth check
$user_id = $_SESSION['admin_id'];
$user_name = $_SESSION['name'];
$security_key = $_SESSION['security_key'];
if ($user_id == NULL || $security_key == NULL) {
header('Location: index.php');
}
// check admin
$user_role = $_SESSION['user_role'];
$admin_id = $_GET['admin_id'];
if(isset($_POST['btn_admin_password'])){
$error = $obj_admin->admin_password_change($_POST,$admin_id);
}
$page_name="Admin";
include("include/sidebar.php");
?>
<script>
function validate(admin_new_password,admin_cnew_password){
var a = document.getElementById(admin_new_password).value;
var b = document.getElementById(admin_cnew_password).value;
if (a!=b) {
alert("Passwords do not match");
}
return false;
}
</script>
<div class="row">
<div class="col-md-12">
<div class="well well-custom">
<ul class="nav nav-tabs nav-justified nav-tabs-custom">
<li class="active"><a href="manage-admin.php">Manage Admin</a></li>
<li><a href="admin-manage-user.php">Manage User</a></li>
</ul>
<div class="gap"></div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="well">
<h3 class="text-center bg-primary">Admin - Change Password</h3><br>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<?php
if(isset($error)){
?>
<div class="alert alert-danger">
<strong>Oopps!!</strong> <?php echo $error; ?>
</div>
<?php
}
?>
<form class="form-horizontal" role="form" action="" method="post" autocomplete="off">
<div class="form-group">
<label class="control-label col-sm-4">Old Password</label>
<div class="col-sm-8">
<input type="password" placeholder="Enter Old Password" name="admin_old_password" id="admin_old_password" list="expense" class="form-control input-custom" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-4">New Password</label>
<div class="col-sm-8">
<input type="password" placeholder="Enter New Password" name="admin_new_password" id="admin_new_password" class="form-control input-custom" min="8" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-4">Confirm New Password</label>
<div class="col-sm-8">
<input type="password" placeholder="Confirm New Password" name="admin_cnew_password" id="admin_cnew_password" list="expense" min="8" class="form-control input-custom" required>
</div>
</div>
<div class="form-group">
</div>
<div class="form-group">
<div class="col-sm-offset-4 col-sm-3">
<button type="submit" name="btn_admin_password" class="btn btn-success-custom">Change</button>
</div>
<div class="col-sm-3">
<a href="manage-admin.php" class="btn btn-danger-custom">cancel</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include("include/footer.php");
?>