Angular - Template-Driven Forms
Consider this Angular form snippet:
What is the state of the Send button when the email input is empty?
<form #formRef="ngForm"> <input name="email" ngModel required> <button [disabled]="formRef.form.invalid">Send</button> </form>
What is the state of the Send button when the email input is empty?
