Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

mitchell/Replacing reset password text #6567

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/javascript/app/pages/user/lost_password.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const LostPassword = (() => {
BinaryPjax.load(`${urlFor('user/reset_passwordws')}#token=${$('#txt_verification_code').val()}`);
}, false);
} else {
$(form_id).html($('<div/>', { class: 'notice-msg', text: localize('Please check your email for the password reset link.') }));
$(form_id).html($('<div/>', { class: 'notice-msg', text: localize('If you have an account with us, we\'ll send you a link to your email in a few minutes to reset your password.') }));

}
} else if (response.error) {
const $form_error = $('#form_error');
Expand Down