-
Notifications
You must be signed in to change notification settings - Fork 12
/
changepassemp.php
122 lines (97 loc) · 4.02 KB
/
changepassemp.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
<?php
require_once ('process/dbh.php');
$sql = "SELECT * FROM `employee` WHERE 1";
//echo "$sql";
$result = mysqli_query($conn, $sql);
if(isset($_POST['update']))
{
$id = $_POST['id'];
$old = $_POST['oldpass'];
$new = $_POST['newpass'];
$result = mysqli_query($conn, "select employee.password from employee WHERE id = $id");
$employee = mysqli_fetch_assoc($result);
if($old == $employee['password']){
$sql = "UPDATE `employee` SET `password`='$new' WHERE id = $id";
mysqli_query($conn, $sql);
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Password Updated')
window.location.href='myprofile.php?id=$id';</SCRIPT>");
}
else{
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Failed to Update Password')
window.location.href='javascript:history.go(-1)';
</SCRIPT>");
}
}
?>
<!-- <?php
$id = (isset($_GET['id']) ? $_GET['id'] : '');
$sql = "SELECT * from `employee` WHERE id=$id";
$result = mysqli_query($conn, $sql);
if($result){
while($res = mysqli_fetch_assoc($result)){
$old = $res['password'];
echo "$old";
}
}
?> -->
<html>
<head>
<title>Change Password | XYZ Corporation</title>
<!-- Icons font CSS-->
<link href="vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="vendor/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" media="all">
<!-- Font special for pages-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<!-- Vendor CSS-->
<link href="vendor/select2/select2.min.css" rel="stylesheet" media="all">
<link href="vendor/datepicker/daterangepicker.css" rel="stylesheet" media="all">
<!-- Main CSS-->
<link href="css/main.css" rel="stylesheet" media="all">
</head>
<body>
<header>
<nav>
<h1>XYZ Corp.</h1>
<ul id="navli">
<li><a class="homeblack" href="eloginwel.php?id=<?php echo $id?>"">HOME</a></li>
<li><a class="homered" href="myprofile.php?id=<?php echo $id?>"">My Profile</a></li>
<li><a class="homeblack" href="applyleave.php?id=<?php echo $id?>"">Apply Leave</a></li>
<li><a class="homeblack" href="elogin.html">Log Out</a></li>
</ul>
</nav>
</header>
<div class="divider"></div>
<!-- <form id = "registration" action="edit.php" method="POST"> -->
<div class="page-wrapper bg-blue p-t-100 p-b-100 font-robo">
<div class="wrapper wrapper--w680">
<div class="card card-1">
<div class="card-heading"></div>
<div class="card-body">
<h2 class="title">Update Password</h2>
<form id = "registration" action="changepassemp.php" method="POST">
<div class="row row-space">
<div class="col-2">
<div class="input-group">
<p>Old Password</p>
<input class="input--style-1" type="Password" name = "oldpass" required >
</div>
</div>
<div class="col-2">
<div class="input-group">
<p>New Password</p>
<input class="input--style-1" type="Password" name="newpass" required>
</div>
</div>
</div>
<input type="hidden" name="id" id="textField" value="<?php echo $id;?>" required="required"><br><br>
<div class="p-t-20">
<button class="btn btn--radius btn--green" type="submit" name="update">Submit</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>