diff --git a/frappe/www/update-password.html b/frappe/www/update-password.html
index 7ac88d04b0..15cdd6ffc2 100644
--- a/frappe/www/update-password.html
+++ b/frappe/www/update-password.html
@@ -69,15 +69,15 @@ frappe.ready(function() {
const confirm_password = $('#confirm_password').val()
if (!args.old_password && !args.key) {
frappe.msgprint({
- title: "{{ _('Message') }}",
- message: "{{ _('Old Password Required.') }}",
+ title: "{{ _('Missing Value') }}",
+ message: "{{ _('Please enter your old password.') }}",
clear: true
});
}
if (!args.new_password) {
frappe.msgprint({
- title: "{{ _('Message') }}",
- message: "{{ _('New Password Required.') }}",
+ title: "{{ _('Missing Value') }}",
+ message: "{{ _('Please enter your new password.') }}",
clear: true
});
}
@@ -110,8 +110,8 @@ frappe.ready(function() {
.html("{{ _('Status Updated') }}");
if(r.message) {
frappe.msgprint({
- title: "{{ _('Message') }}",
- message: "{{ _('Password Updated') }}",
+ title: "{{ _('Password set') }}",
+ message: "{{ _('Your new password has been set successfully.') }}",
// password is updated successfully
// clear any server message
clear: true