- Write an Angular form
- Display various form validation states using expressions
Using this base repo, let's create a register form for a user. You should put the following fields in the form, and display the relevant errors if the validation fails.
Required field, a minimum of three characters, and a maximum of 20.
Required field, minimum length 8, no maximum length
Required email, should be a valid email (hint - use type="email"
)