-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangepassword.php
51 lines (44 loc) · 1.3 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
<?php
require_once '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(
'current_password' => array(
'required' => true,
'min' => 6
),
'new_password' => array(
'required' => true,
'min' => 6
),
'new_password_again' => array(
'required' => true,
'min' => 6,
'matches' => 'new_password'
)
));
}
if($validate->passed()) {
if(Hash::make(Input::get('current_password'), $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('new_password'), $salt),
'salt' => $salt
));
Session::flash('home', 'Your password has been changed!');
Redirect::to('index.php');
}
} else {
foreach($validate->errors() as $error) {
echo $error, '<br>';
}
}
}
?>