0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Merge pull request #339 from javorszky/iss282

Users can change password
This commit is contained in:
Hannah Wolfe 2013-08-06 01:17:43 -07:00
commit 10f4bd0311
2 changed files with 53 additions and 2 deletions

View file

@ -69,8 +69,9 @@
<label><strong>Verify Password</strong></label>
<input type="password" id="user-new-password-verification">
</div>
<button class="button-change-password">Change Password</button>
</fieldset>
</form>
</section>
</section>

View file

@ -181,7 +181,8 @@
},
events: {
'click .button-save': 'saveUser'
'click .button-save': 'saveUser',
'click .button-change-password': 'changePassword'
},
saveUser: function () {
@ -199,6 +200,55 @@
});
},
changePassword: function (event) {
event.preventDefault();
var self = this,
email = this.$('#user-email').val(),
oldPassword = this.$('#user-password-old').val(),
newPassword = this.$('#user-password-new').val(),
ne2Password = this.$('#user-new-password-verification').val();
if (newPassword !== ne2Password || newPassword.length < 6 || oldPassword.length < 6) {
this.saveError();
return;
}
$.ajax({
url: '/ghost/changepw/',
type: 'POST',
data: {
email: email,
password: oldPassword,
newpassword: newPassword,
ne2password: ne2Password
},
success: function (msg) {
self.addSubview(new Ghost.Views.NotificationCollection({
model: [{
type: 'success',
message: msg.msg,
status: 'passive',
id: 'success-98'
}]
}));
self.$('#user-password-old').val('');
self.$('#user-password-new').val('');
self.$('#user-new-password-verification').val('');
},
error: function (obj, string, status) {
self.addSubview(new Ghost.Views.NotificationCollection({
model: [{
type: 'error',
message: 'Invalid username or password',
status: 'passive'
}]
}));
}
});
},
templateName: 'settings/user-profile',
beforeRender: function () {