-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangepassword.php
84 lines (66 loc) · 1.79 KB
/
changepassword.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
<?php
require_once 'core/init.php';
$user = new User();
if(!$user->isLoggedIn()){
Redirect::to('index.php');
}
if(Input::exists()){
//echo 'input exists';
if(Token::check(Input::get('token'))){
$validate = new Validate();
$validation = $validate->check($_POST, array(
'password_current'=> array(
'required'=>true,
'min'=>6
),
'password_new'=> array(
'required'=>true,
'min'=>6
),
'password_new_again'=> array(
'required'=>true,
'min'=>6,
'matches'=>'password_new'
)
));
if($validation->passed()){
// change password
if(Hash::make(Input::get('password_current'), $user->data()->salt) !== $user->data()->password){
echo 'Your current password is wrong.';
} else {
$salt= Hash::salt(32);
$user->update(array(
'password' => Hash::make(Input::get('password_new'),$salt),
'salt' => $salt
));
Session::flash('home','Your pasword has been changed');
Redirect::to('index.php');
}
} else {
foreach($validation->errors() as $error){
echo $error, '<br>';
}
}
} else {
//echo 'no token';
}
} else {
//echo 'input does not exists';
}
?>
<form action="" method="post">
<div class="field">
<label for="password_current">Current password</label>
<input type="password" name="password_current" id="password_current">
</div>
<div class="field">
<label for="password_new">New password</label>
<input type="password" name="password_new" id="password_new">
</div>
<div class="field">
<label for="password_new_again">New password again</label>
<input type="password" name="password_new_again" id="password_new_again">
</div>
<input type="submit" value="Change">
<input type="hidden" name="token" value="<?php echo Token::generate(); ?>">
</form>