forked from booruguru/UserPie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
change-password.php
143 lines (114 loc) · 3.56 KB
/
change-password.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
<?php
/*
UserCake Version: 1.0
http://usercake.com
*/
include("models/config.php");
//Prevent the user visiting the logged in page if he/she is not logged in
if(!isUserLoggedIn()) { header("Location: login.php"); die(); }
?>
<?php
/*
Below is a very simple example of how to process a login request.
Some simple validation (ideally more is needed).
*/
//Forms posted
if(!empty($_POST))
{
$errors = array();
$password = $_POST["password"];
$password_new = $_POST["passwordc"];
$password_confirm = $_POST["passwordcheck"];
//Perform some validation
//Feel free to edit / change as required
if(trim($password) == "")
{
$errors[] = lang("ACCOUNT_SPECIFY_PASSWORD");
}
else if(trim($password_new) == "")
{
$errors[] = lang("ACCOUNT_SPECIFY_NEW_PASSWORD");
}
else if(minMaxRange(8,50,$password_new))
{
$errors[] = lang("ACCOUNT_NEW_PASSWORD_LENGTH",array(8,50));
}
else if($password_new != $password_confirm)
{
$errors[] = lang("ACCOUNT_PASS_MISMATCH");
}
//End data validation
if(count($errors) == 0)
{
//Confirm the hash's match before updating a users password
$entered_pass = generateHash($password,$loggedInUser->hash_pw);
//Also prevent updating if someone attempts to update with the same password
$entered_pass_new = generateHash($password_new,$loggedInUser->hash_pw);
if($entered_pass != $loggedInUser->hash_pw)
{
//No match
$errors[] = lang("ACCOUNT_PASSWORD_INVALID");
}
else if($entered_pass_new == $loggedInUser->hash_pw)
{
//Don't update, this fool is trying to update with the same password ìì
$errors[] = lang("NOTHING_TO_UPDATE");
}
else
{
//This function will create the new hash and update the hash_pw property.
$loggedInUser->updatePassword($password_new);
}
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Update Password | <?php echo $websiteName; ?> </title>
<?php require_once("head_inc.php"); ?>
</head>
<body>
<?php require_once("navbar.php"); ?>
<div id="content">
<div class="modal-ish">
<div class="modal-body">
<?php
if(!empty($_POST))
{
if(count($errors) > 0)
{
?>
<div id="errors">
<?php errorBlock($errors); ?>
</div>
<?php } else { ?>
<div id="success">
<p><?php echo lang("ACCOUNT_DETAILS_UPDATED"); ?></p>
</div>
<? } }?>
<form name="changePass" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post">
<p>
<label>Password:</label>
<input type="password" name="password" />
</p>
<p>
<label>New Pass:</label>
<input type="password" name="passwordc" />
</p>
<p>
<label>Confirm Pass:</label>
<input type="password" name="passwordcheck" />
</p>
</div>
<div class="modal-footer">
<input type="submit" class="btn btn-primary" name="new" id="newfeedform" value="Update" />
</div>
</div>
</form>
<div class="clear"></div>
<p style="margin-top:30px; text-align:center;"><a href="/">Home</a></p>
</div>
</body>
</html>