-
Notifications
You must be signed in to change notification settings - Fork 0
/
changepassword.php
executable file
·82 lines (67 loc) · 1.98 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
<?php
$pagename = "Change password";
require_once 'core/init.php';
include_once 'includes/head.php';
include_once 'includes/header.php';
$user = new User();
if (!$user->isLoggedIn()) {
Redirect::to('index.php');
}
//Used to redirect to index page if not logged in
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,
'match' => 'password_new'
)
));
if($validation->passed()){
if(Hash::make(Input::get('password_current'), $user->data()->salt !== $user->data()->password)) {
echo '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', $LANG['pwchanged']);
Redirect::to('index.php');
}
} else {
foreach ($validation->errors() as $error) {
echo $error, '<br>';
}
}
}
}
?>
<form action="" method="POST">
<div class="field">
<label for="password_current"><?php echo $LANG['current']; ?> <?php echo $LANG['password_lower']; ?></label>
<input type="password" name="password_current" id="password_current">
</div>
<div class="field">
<label for="password_new"><?php echo $LANG['new']; ?> <?php echo $LANG['password_lower']; ?></label>
<input type="password" name="password_new" id="password_new">
</div>
<div class="field">
<label for="password_new_again"><?php echo $LANG['repeatthe']; ?> <?php echo $LANG['password_lower']; ?></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>
<?php
include_once 'includes/bottom.php';
?>