-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot3_c.php
218 lines (167 loc) · 5.97 KB
/
forgot3_c.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
session_start();
error_reporting(0);
include('db.php');
if(isset($_POST['change']))
{
$email=$_SESSION['email'];
// $contact=$_POST['contact'];
$password=$_POST['password'];
// $password = mysqli_real_escape_string($conn, $_POST['password']);
// $password = base64_encode(strrev(md5($password)));
$query=mysqli_query($conn,"SELECT * FROM company WHERE email='$email' ");
$num=mysqli_fetch_array($query);
if($num>0)
{
echo "password ok";
//$extra="forgot-password.php";
//$sql = "UPDATE company SET password='$password' WHERE id_company='$_SESSION[id_company]'";
mysqli_query($conn," UPDATE company SET password='$password' WHERE id_company='$_SESSION[id_company]' ");
//$host=$_SERVER['HTTP_HOST'];
//$uri=rtrim(dirname($_SERVER['PHP_SELF']),'/\\');
//header("location:http://$host$uri/$extra");
$_SESSION['errmsg']="Password Changed Successfully";
header("Location:jobs.php");
// session_start();
// session_unset();
// session_destroy();
exit();
}
else
{
//$extra="forgot-password.php";
//$host = $_SERVER['HTTP_HOST'];
//$uri = rtrim(dirname($_SERVER['PHP_SELF']),'/\\');
//header("location:http://$host$uri/$extra");
$_SESSION['errmsg']="Invalid email id or Contact no";
exit();
}
}
?>
<?php
//To Handle Session Variables on This Page
session_start();
//Including Database Connection From db.php file to avoid rewriting in all files
require_once("db.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dream Job</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.7 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/AdminLTE.min.css">
<link rel="stylesheet" href="css/_all-skins.min.css">
<!-- Custom -->
<link rel="stylesheet" href="css/custom.css">
<!-- Google Font -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
</head>
<<body class="hold-transition login-page container-fluid"style="background: url(img/j3.jpg) no-repeat center;">
<div class="login-box" style="background: #9ae0e7 ;">
<div class="login-logo">
<a href="index.php"><b>Job</b> Portal</a>
</div>
<!-- /.login-logo -->
<div class="login-box-body">
<p class="login-box-msg">change password</p>
<form name="register" method="post" id="checkpassword"onSubmit = "return checkPassword(this)">
<span style="color:red;" >
<?php
echo htmlentities($_SESSION['errmsg']);
?>
<?php
echo htmlentities($_SESSION['errmsg']="");
?>
</span>
<div class="form-group">
<label class="info-title" for="password">Password. <span>*</span></label>
<input type="password" class="form-control unicase-form-control text-input" id="password" name="password" required autocomplete="off">
</div>
<div class="form-group">
<label class="info-title" for="confirmpassword">Confirm Password. <span>*</span></label>
<input type="password" class="form-control unicase-form-control text-input" id="confirmpassword" name="confirmpassword" required >
</div>
<div id="passwordError" class="btn btn-flat btn-danger hide-me" >
Password Mismatch!!
</div>
<button type="submit" class="btn-upper btn btn-primary checkout-page-button" name="change">Change</button>
</form>
</div>
</div>
</div>
</div>
<!-- <script>
$(document).ready(function(){
$(".changecolor").switchstylesheet( { seperator:"color"} );
$('.show-theme-options').click(function(){
$(this).parent().toggleClass('open');
return false;
});
});
$(window).bind("load", function() {
$('.show-theme-options').delay(2000).trigger('click');
});
</script>
-->
<!-- <script type="text/javascript">
function valid()
{
if(document.register.password.value!= document.register.confirmpassword.value)
{
alert("Password and Confirm Password Field do not match !!");
document.register.confirmpassword.focus();
return false;
}
return true;
}
</script>
-->
<script>
function checkPassword(form) {
password1 = form.password.value;
password2 = form.confirmpassword.value;
// If password not entered
if (password1 == '')
alert ("Please enter Password");
// If confirm password not entered
else if (password2 == '')
alert ("Please enter confirm password");
// If Not same return False.
else if (password1 != password2) {
alert ("\nPassword did not match: Please try again...")
return false;
}
// If same return True.
else{
alert("Success")
return true;
}
}
// $("#checkpassword").on("submit", function(e) {
// e.preventDefault();
// if( $('#password').val() != $('#confirmpassword').val() ) {
// $('#passwordError').show();
// } else {
// $(this).unbind('submit').submit();
// }
// });
</script>
<!-- jQuery 3 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- AdminLTE App -->
<script src="js/adminlte.min.js"></script>
</body>
</html>