Angular - Template-Driven Forms
Given this Angular template snippet:
What happens to the Submit button when the input is empty?
<form #f="ngForm"> <input name="email" ngModel required> <button [disabled]="!f.form.valid">Submit</button> </form>
What happens to the Submit button when the input is empty?
