Created
November 29, 2023 10:12
-
-
Save ZenulAbidin/0543f5d7da35b2b521ef5fd461a82d20 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="profile-info"> | |
<ion-row> | |
<ion-label>First Name:</ion-label> | |
<ion-input [(ngModel)]="profile.firstName"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Last Name:</ion-label> | |
<ion-input [(ngModel)]="profile.lastName"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Organization:</ion-label> | |
<ion-input [(ngModel)]="profile.org"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Job Title:</ion-label> | |
<ion-input [(ngModel)]="profile.orgTitle"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Address Line 1:</ion-label> | |
<ion-input [(ngModel)]="profile.addressLine1"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Address Line 2:</ion-label> | |
<ion-input [(ngModel)]="profile.addressLine2"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>City:</ion-label> | |
<ion-input [(ngModel)]="profile.city"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Zip Code:</ion-label> | |
<ion-input [(ngModel)]="profile.zipCode"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>State/Province:</ion-label> | |
<ion-input [(ngModel)]="profile.stateProvince"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Country:</ion-label> | |
<ion-input [(ngModel)]="profile.country"></ion-input> | |
</ion-row> | |
<ion-row> | |
<ion-label>Phone Number:</ion-label> | |
<ion-input type="tel" [(ngModel)]="profile.tel" (ionInput)="parsePhoneNumber()"> | |
<div slot="label"> | |
<ion-select [(ngModel)]="countryCode" interface="popover" | |
[interfaceOptions]="{cssClass: 'country-codes'}"> | |
<ion-select-option *ngFor="let phoneNumber of phoneNumbers" [value]="phoneNumber.country"> | |
{{phoneNumber.text}} | |
</ion-select-option> | |
</ion-select> | |
</div> | |
</ion-input> | |
</ion-row> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment