Consuming REST API for the Register Page
Learn to consume a REST API in an Angular application.
We'll cover the following...
Integrating the register
REST API
To integrate the REST API for our Register page, we need to import the auth.service.ts
file and the router into our register.component.ts
file. The auth.service.ts
file contains the registerUser()
service, interacting with our REST ...