Am developing a registration form in AngularJS . In which am reusing the same form at 4 different places. For that am using a common form at single html page like the below.
<div>
<div>
<div class="label-div float-left">
<label>
Address:
</label>
<input type="text" ng-model="addressInfo.addressLine1" />
</div>
</div>
</div>
In my registration using the directive of AngularJS am reusing it in 4 different place like below
<registration-form></registration-form>
<input type="button" value ="continue" >
How can i disable button in registration html since my directive template has my form content .