Ionic Register with php

 Ionic Register.page.html coding



<ion-header [translucent]="true">

<ion-toolbar>

  <ion-buttons slot="start">

    <ion-menu-button></ion-menu-button>

  </ion-buttons>

  <ion-title>Registration</ion-title>

</ion-toolbar>

   </ion-header>

   

<ion-content align="center" class="bg">

<br><br>

<!-- <h1> Registration </h1> -->

<input type="text" placeholder="Enter Your Name" name="name" [(ngModel)]="name">

<input type="text" placeholder="Enter Your Email" name="email" [(ngModel)]="email">

<input type="password" placeholder="Enter Your Password" name="passworda" [(ngModel)]="passworda">

<input type="password" placeholder="Enter Your Conform Password" name="conform" [(ngModel)]="conform">

<br><br>

<div class="Gender">

<label class="container" >Male

<input type="radio" [(ngModel)]="gender" value="male" checked="checked">

<span class="checkmark"></span>

</label>

<label class="container">Female

<input type="radio" [(ngModel)]="gender" value="female">

<span class="checkmark"></span>

</label>

</div><br>

<input type="text" placeholder="Enter Your Shop Name" name="shopname" [(ngModel)]="shopname">

<input type="text" placeholder="Enter Your Shop City" name="city" [(ngModel)]="city">

<input type="text" placeholder="Enter Your Shop Address" name="address" [(ngModel)]="address">

<input type="text" placeholder="Enter Your Mobile Number" name="mob" [(ngModel)]="mob">

<center> <button type="submit" class="btn1" (click)="registration()"> Registration </button> </center>

</ion-content>


Comments