<div ng-app="myApp" ng-controller="myCtrl">
<button type="submit" class="btn btn-primary pull-left" ng-
disabled="captchaError">Submit</button>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function ($scope) {
$scope.captchaError = true;
});
</script>
Here is my code.
I set captcha
error to true and it disabled the button. My question is when this page will run and if user inspect
that button and remove disabled="disabled"
from the element then the button will start working. Is there any way to prevent
this and button will not start working on removing disabled="disabled"