Commit 82c0589fd15911ac7c51d8632fd164364280c755
1 parent
9c3f0aab
this is for bug 16726 email address remains saved
Showing
2 changed files
with
3 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -96,12 +96,13 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
96 | 96 | var isOutlineOptionChecked = ""; |
97 | 97 | $rootScope.forgotPwdModalShow = function () |
98 | 98 | { |
99 | - document.getElementById("forgetPwdForm").reset() | |
99 | + document.getElementById("forgetPwdForm").reset(); | |
100 | 100 | $("#forgotPwdModal").modal("show"); |
101 | 101 | $(".modal-backdrop").css("opacity",".5"); |
102 | 102 | } |
103 | 103 | $rootScope.forgotUserModalShow=function() |
104 | 104 | { |
105 | + document.getElementById("forgetUSerIdForm").reset(); | |
105 | 106 | $("#forgotUserModal").modal("show"); |
106 | 107 | $(".modal-backdrop").css("opacity", ".5"); |
107 | 108 | ... | ... |
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -238,7 +238,7 @@ |
238 | 238 | <h5 class="modal-title" id="exampleModalLabel">Enter your email id to recover User id</h5> |
239 | 239 | </div> |
240 | 240 | <div class="modal-body"> |
241 | - <form> | |
241 | + <form id="forgetUSerIdForm"> | |
242 | 242 | <div class="form-group"> |
243 | 243 | <div class="input-group"> |
244 | 244 | <span class="input-group-addon"><i class="fa fa-envelope"></i></span> | ... | ... |