Commit 531f87728a51840526a91db709aba7533d7d7bc3
1 parent
f78c1907
updated message on login
Showing
2 changed files
with
9 additions
and
6 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -207,10 +207,13 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic | @@ -207,10 +207,13 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic | ||
207 | $('.forgot-sm1').modal('hide'); | 207 | $('.forgot-sm1').modal('hide'); |
208 | } | 208 | } |
209 | if (isMailForPassword) | 209 | if (isMailForPassword) |
210 | - message = "Password"; | ||
211 | - else | ||
212 | - message = "UserId"; | ||
213 | - alert(message + " sent in mail successfully."); | 210 | + message = "Please check you email and reset your password."; |
211 | + else { | ||
212 | + message = "Please check you email, sent UserId in your email."; | ||
213 | + } | ||
214 | + alert(message); | ||
215 | + | ||
216 | + | ||
214 | } | 217 | } |
215 | } | 218 | } |
216 | 219 |
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
@@ -281,9 +281,9 @@ AIA.constant('ImageTypes', ['Illustration', 'Cadaver Photograph', 'Radiograph']) | @@ -281,9 +281,9 @@ AIA.constant('ImageTypes', ['Illustration', 'Cadaver Photograph', 'Radiograph']) | ||
281 | 281 | ||
282 | //login constant. | 282 | //login constant. |
283 | AIA.constant("LoginConstants", { | 283 | AIA.constant("LoginConstants", { |
284 | - "USER_NOT_FOUND": "User not found.", | 284 | + "USER_NOT_FOUND": "UserId or Password is incorrect.", |
285 | "ERROR_IN_FECTHING_DETAILS": "Error in fecthing details.", | 285 | "ERROR_IN_FECTHING_DETAILS": "Error in fecthing details.", |
286 | - "MAIL_NOT_SENT" : "Mail not sent.", | 286 | + "MAIL_NOT_SENT" : "We are facing some issue in sending email. Please try after sometime.", |
287 | 287 | ||
288 | }) | 288 | }) |
289 | 289 |