In the SPA fix the methods used to post the registration.
[Read More]Enhance the registration process.
- Reactive forms
- Validation
- Custom validators
- Validation feedback
- The Date problem
- Hooking to the API
Expand the api registration
Adapt the webapi to the new registration form.
[Read More]Expand the register form
Using Angular FormBuilder to configure a form.
The FormBuilder provides syntactic sugar that shortens creating instances of a FormControl, FormGroup, or FormArray. It reduces the amount of boilerplate needed to build complex forms.
[Read More]Reactive forms
Reactive Forms is a different philosophy from FormsModule template-driven technology.
ReactiveFormsModule are defined in the component code and the binding with the template is syncronous.
[Read More]