-
Notifications
You must be signed in to change notification settings - Fork 0
/
changepassword.php
73 lines (61 loc) · 1.72 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
<?php
require 'core/init.php';
$user = new User();
if(!$user->isLoggedIn()) {
Redirect::to('index.php');
}
if(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()) {
if(Hash::make(Input::get('password_current'), $user->data()->salt) !== $user->data()->password) {
echo 'Your current password is wrong.';
} else {
try {
$salt = Hash::salt(32);
$user->update(array(
'password' => Hash::make(Input::get('password_new'), $salt),
'salt' => $salt
));
Session::flash('home', 'Your password has been changed!');
Redirect::to('index.php');
} catch(Exception $e) {
die($e->getMessage());
}
}
} else {
foreach($validate->errors() as $error) {
echo $error, '<br>';
}
}
}
}
?>
<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>