How create login page in ionic with round input type?
How create login Page in Ionic with round input type. As we have discussed how to create a new project in previous section. Now we will see how create a new page for login with rounded input type and button.Go to the created project(myApplication) and write the command below - C:\Users\USERNAME\IonicProject\myApplication>ionic g page login(pagename) We then notice that created page in app folder has login.page.ts , login.page.html , login.page.scss and login.module.ts files. Our html page will look like below: <ion-header> <ion-toolbar> <ion-title>login</ion-title> </ion-toolbar> </ion-header> <section class="log_banner"> <div class="container"> <div class="logo-center2"> <img src="assets/images/logo.png"> </div> <div class="logo-center1"> <form> <input type="text" placeholder="Enter Email" name="email" require...
Comments
Post a Comment