Detected 3 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: assword Incorrectly. </div> </div> CONTROLLER . js : function LoginCheckController($scope) { $scope.users = [ { UserName: 'chandra', Password: 'hello' }, { UserName: 'Harish', Password: 'hi' }, { UserName: 'Chinthu', Password: 'hi' }, ]; $scope.go = function (path) { $location.path("/SuccessPage"); }; } REGISTRATION . html : <!DOCTYPE html> <html> <head> <script […]
↧