diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
index 207bfc8..e35d315 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -207,10 +207,13 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
$('.forgot-sm1').modal('hide');
}
if (isMailForPassword)
- message = "Password";
- else
- message = "UserId";
- alert(message + " sent in mail successfully.");
+ message = "Please check you email and reset your password.";
+ else {
+ message = "Please check you email, sent UserId in your email.";
+ }
+ alert(message);
+
+
}
}
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js b/400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
index bac9f02..2c57e8c 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
@@ -281,9 +281,9 @@ AIA.constant('ImageTypes', ['Illustration', 'Cadaver Photograph', 'Radiograph'])
//login constant.
AIA.constant("LoginConstants", {
- "USER_NOT_FOUND": "User not found.",
+ "USER_NOT_FOUND": "UserId or Password is incorrect.",
"ERROR_IN_FECTHING_DETAILS": "Error in fecthing details.",
- "MAIL_NOT_SENT" : "Mail not sent.",
+ "MAIL_NOT_SENT" : "We are facing some issue in sending email. Please try after sometime.",
})