10-10-2019
Showing
API ERROR.txt
0 → 100644
No preview for this file type
This diff is collapsed.
Click to expand it.
... | ... | @@ -21,6 +21,7 @@ |
"@angular/platform-browser": "^7.2.2", | ||
"@angular/platform-browser-dynamic": "^7.2.2", | ||
"@angular/router": "^7.2.2", | ||
"@ionic-native/call-number": "^5.15.0", | ||
"@ionic-native/core": "^5.0.0", | ||
"@ionic-native/geolocation": "^5.15.0", | ||
"@ionic-native/splash-screen": "^5.0.0", | ||
... | ... | @@ -29,7 +30,8 @@ |
"@ionic/angular": "^4.1.0", | ||
"@types/jquery": "^3.3.31", | ||
"angular-calendar": "^0.27.14", | ||
"cordova-android": "7.1.4", | ||
"call-number": "^1.0.1", | ||
"cordova-android": "^8.1.0", | ||
"cordova-plugin-device": "^2.0.2", | ||
"cordova-plugin-geolocation": "^4.0.2", | ||
"cordova-plugin-ionic-keyboard": "^2.1.3", | ||
... | ... | @@ -85,10 +87,11 @@ |
}, | ||
"cordova-plugin-ionic-keyboard": {}, | ||
"cordova-plugin-geolocation": {}, | ||
"cordova-plugin-x-toast": {} | ||
"cordova-plugin-x-toast": {}, | ||
"mx.ferreyra.callnumber": {} | ||
}, | ||
"platforms": [ | ||
"android" | ||
] | ||
} | ||
} | ||
} | ||
\ No newline at end of file |
... | ... | @@ -3,7 +3,7 @@ |
<div class="app_header"> | ||
<button class="nav_btn back_btn floatLeft" (click)="goBack()"> | ||
</button> | ||
<div class="nav_title floatLeft"><h4>GENERAL DETAILS</h4></div> | ||
<div class="nav_title floatLeft"><h4>MY PROFILE</h4></div> | ||
<button class="nav_btn nav_btn_text floatRight"> | ||
</button> | ||
<div class="clear"></div> | ||
... | ... | @@ -12,60 +12,53 @@ |
<ion-content> | ||
<div class="signup_wrapper"> | ||
<div class="signup_form"> | ||
<form [formGroup]="signupForm"> | ||
<div class="row"> | ||
<p>Your Full Name</p> | ||
<ion-input value="John Doe" type="text"></ion-input> | ||
<p>Full Name</p> | ||
<ion-input formControlName="user_name" [disabled]="disableForm()" type="text"></ion-input> | ||
</div> | ||
<div class="row"> | ||
<p>Email Address</p> | ||
<ion-input value="[email protected]" type="text"></ion-input> | ||
<p>Email</p> | ||
<ion-input formControlName="user_email" [disabled]="disableForm()" type="text"></ion-input> | ||
</div> | ||
<div class="row"> | ||
<p>Phone Number</p> | ||
<ion-row class="p0"> | ||
<ion-col size="4"> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">+91</ion-select-option> | ||
<ion-select placeholder="" formControlName="user_phonecode" [disabled]="disableForm()"> | ||
<ion-select-option value="">+33</ion-select-option> | ||
</ion-select> | ||
</ion-col> | ||
<ion-col size="8"> | ||
<ion-input value="" type="number"></ion-input> | ||
<ion-input value="" formControlName="user_phonenumber" [disabled]="disableForm()" type="number"></ion-input> | ||
</ion-col> | ||
</ion-row> | ||
</div> | ||
<div class="row"> | ||
<p>Country</p> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">Country Name</ion-select-option> | ||
</ion-select> | ||
<ion-input type="text" formControlName="user_country" [disabled]="disableForm()"></ion-input> | ||
</div> | ||
<div class="row"> | ||
<!-- <div class="row"> | ||
<p>District</p> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">District Name</ion-select-option> | ||
</ion-select> | ||
<ion-input type="text"></ion-input> | ||
</div> | ||
<div class="row"> | ||
<p>City</p> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">City Name</ion-select-option> | ||
</ion-select> | ||
</div> | ||
<ion-input type="text"></ion-input> | ||
</div> --> | ||
<div class="row"> | ||
<p>Area</p> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">Area name</ion-select-option> | ||
</ion-select> | ||
<ion-input type="text"formControlName="user_area"[disabled]="disableForm()" ></ion-input> | ||
</div> | ||
<div class="row"> | ||
<p>House name/Building</p> | ||
<ion-select placeholder=""> | ||
<ion-select-option value="">Choose address</ion-select-option> | ||
</ion-select> | ||
<p>Address</p> | ||
<ion-input type="text"formControlName="user_address" [disabled]="disableForm()" ></ion-input> | ||
</div> | ||
<div class="row"> | ||
<button class="signup_btn">Save</button> | ||
<button class="signup_btn" (click)="formEdit()" *ngIf="editForm">EDIT PROFILE</button> | ||
<button class="signup_btn" (click)="updateProfileUser()" *ngIf="!editForm">UPDATE PROFILE</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
... | ... |
Please
register
or
sign in
to comment