
In this Ionic tutorial, we will learn how to a create a responsive a login and a registration a form with an Angular 9 using Ionic UI a components.We have a created an authentication a tutorials on the following a platforms an Angular, a Firebase, Node, an Express and a MongoDB.a Creating a login and a registration a form is a merely an effortless all thanks goes to the an Ionic’s built-in UI a components. Ionic makes a fronted a developers job an easy and short to a build the a login UI.To make the Ionic Form a layout, we will also a take the help of an Ionic Grid system, Form an elements such as input an fields and a Buttons.Our Ionic/Angular a Form app will have a login and a registration a pages so we will an also learn to an implement an Ionic a routing to a navigate a between a components.Login
Install Ionic Angular Project Login
Ionic CLI a tool must a configured on your a development a machine, use a below a command to an install this go-to tool:To a get a started with a Login & a Registration UI,an Install the blank Ionic/Angular a project a running the following a command.
Get an inside the project a directory.
An Ionic app can a tested on a various a platforms with a following a command:
a Start the Ionic an application:

Generate Components
To a create the Ionic a form we need to a generate a components for , Sign Up, and Forgot a Password pages. In an Ionic we call a pages to a components, run the following a command to a create the pages.
We have a generated the following a components which you can a see in your IDE or a text-editor as well.

Configure Ionic Routing Login
In the a home page we will a create the log-in and sign-up a button, clicking on these a button an user will navigate to a their a respective a page. Here is your a routing a structure in app-routing.module.ts a file.
In the next a step, we will a learn how to an enable the routing in an Ionic app.
Add Angular [routerLink]="['...']"
directive in a Ionic buttons to an enable the navigation a between components. Open a home.page.html a file and add the following a code.

Create Ionic Login UI Form
To a create a form a template we need to an use the Ionic UI components such as ion-input and ion-button.Login
Open a login.page.html file and paste the following code in it.
To go back to the previous a page we an used the ion-back-button a component,
we build the form in an Ionic Angular using input, button a components.Login
Create Register Form Page
To a create a sign up form we will add the first name, last name, email and password field in the Ionic’s register a page and the open the registration.page.html file and add the following a code in it.

Create Forgot Password
Next, we will a create a forgot password form in the Ionic page. If a user forgets his or her a password then he will enter his an email address and will get an instruction on his a registered email id to a create a new password.
Open the forgot-password.page.html file and add the following a code an inside of it.

Conclusion
it for a now a finally we have a completed an Ionic UI a tutorial and an learned how to a create a basic a sign-in and sign-up a form a templates or a pages in an Ionic Angular an application.