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 @@ | ... | @@ -21,6 +21,7 @@ |
"@angular/platform-browser": "^7.2.2", | "@angular/platform-browser": "^7.2.2", | ||
"@angular/platform-browser-dynamic": "^7.2.2", | "@angular/platform-browser-dynamic": "^7.2.2", | ||
"@angular/router": "^7.2.2", | "@angular/router": "^7.2.2", | ||
"@ionic-native/call-number": "^5.15.0", | |||
"@ionic-native/core": "^5.0.0", | "@ionic-native/core": "^5.0.0", | ||
"@ionic-native/geolocation": "^5.15.0", | "@ionic-native/geolocation": "^5.15.0", | ||
"@ionic-native/splash-screen": "^5.0.0", | "@ionic-native/splash-screen": "^5.0.0", | ||
... | @@ -29,7 +30,8 @@ | ... | @@ -29,7 +30,8 @@ |
"@ionic/angular": "^4.1.0", | "@ionic/angular": "^4.1.0", | ||
"@types/jquery": "^3.3.31", | "@types/jquery": "^3.3.31", | ||
"angular-calendar": "^0.27.14", | "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-device": "^2.0.2", | ||
"cordova-plugin-geolocation": "^4.0.2", | "cordova-plugin-geolocation": "^4.0.2", | ||
"cordova-plugin-ionic-keyboard": "^2.1.3", | "cordova-plugin-ionic-keyboard": "^2.1.3", | ||
... | @@ -85,10 +87,11 @@ | ... | @@ -85,10 +87,11 @@ |
}, | }, | ||
"cordova-plugin-ionic-keyboard": {}, | "cordova-plugin-ionic-keyboard": {}, | ||
"cordova-plugin-geolocation": {}, | "cordova-plugin-geolocation": {}, | ||
"cordova-plugin-x-toast": {} | "cordova-plugin-x-toast": {}, | ||
"mx.ferreyra.callnumber": {} | |||
}, | }, | ||
"platforms": [ | "platforms": [ | ||
"android" | "android" | ||
] | ] | ||
} | } | ||
} | } | ||
\ No newline at end of file |
... | @@ -3,7 +3,7 @@ | ... | @@ -3,7 +3,7 @@ |
<div class="app_header"> | <div class="app_header"> | ||
<button class="nav_btn back_btn floatLeft" (click)="goBack()"> | <button class="nav_btn back_btn floatLeft" (click)="goBack()"> | ||
</button> | </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 class="nav_btn nav_btn_text floatRight"> | ||
</button> | </button> | ||
<div class="clear"></div> | <div class="clear"></div> | ||
... | @@ -12,60 +12,53 @@ | ... | @@ -12,60 +12,53 @@ |
<ion-content> | <ion-content> | ||
<div class="signup_wrapper"> | <div class="signup_wrapper"> | ||
<div class="signup_form"> | <div class="signup_form"> | ||
<form [formGroup]="signupForm"> | |||
<div class="row"> | <div class="row"> | ||
<p>Your Full Name</p> | <p>Full Name</p> | ||
<ion-input value="John Doe" type="text"></ion-input> | <ion-input formControlName="user_name" [disabled]="disableForm()" type="text"></ion-input> | ||
</div> | </div> | ||
<div class="row"> | <div class="row"> | ||
<p>Email Address</p> | <p>Email</p> | ||
<ion-input value="[email protected]" type="text"></ion-input> | <ion-input formControlName="user_email" [disabled]="disableForm()" type="text"></ion-input> | ||
</div> | </div> | ||
<div class="row"> | <div class="row"> | ||
<p>Phone Number</p> | <p>Phone Number</p> | ||
<ion-row class="p0"> | <ion-row class="p0"> | ||
<ion-col size="4"> | <ion-col size="4"> | ||
<ion-select placeholder=""> | <ion-select placeholder="" formControlName="user_phonecode" [disabled]="disableForm()"> | ||
<ion-select-option value="">+91</ion-select-option> | <ion-select-option value="">+33</ion-select-option> | ||
</ion-select> | </ion-select> | ||
</ion-col> | </ion-col> | ||
<ion-col size="8"> | <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-col> | ||
</ion-row> | </ion-row> | ||
</div> | </div> | ||
<div class="row"> | <div class="row"> | ||
<p>Country</p> | <p>Country</p> | ||
<ion-select placeholder=""> | <ion-input type="text" formControlName="user_country" [disabled]="disableForm()"></ion-input> | ||
<ion-select-option value="">Country Name</ion-select-option> | |||
</ion-select> | |||
</div> | </div> | ||
<div class="row"> | <!-- <div class="row"> | ||
<p>District</p> | <p>District</p> | ||
<ion-select placeholder=""> | <ion-input type="text"></ion-input> | ||
<ion-select-option value="">District Name</ion-select-option> | |||
</ion-select> | |||
</div> | </div> | ||
<div class="row"> | <div class="row"> | ||
<p>City</p> | <p>City</p> | ||
<ion-select placeholder=""> | <ion-input type="text"></ion-input> | ||
<ion-select-option value="">City Name</ion-select-option> | </div> --> | ||
</ion-select> | |||
</div> | |||
<div class="row"> | <div class="row"> | ||
<p>Area</p> | <p>Area</p> | ||
<ion-select placeholder=""> | <ion-input type="text"formControlName="user_area"[disabled]="disableForm()" ></ion-input> | ||
<ion-select-option value="">Area name</ion-select-option> | |||
</ion-select> | |||
</div> | </div> | ||
<div class="row"> | <div class="row"> | ||
<p>House name/Building</p> | <p>Address</p> | ||
<ion-select placeholder=""> | <ion-input type="text"formControlName="user_address" [disabled]="disableForm()" ></ion-input> | ||
<ion-select-option value="">Choose address</ion-select-option> | |||
</ion-select> | |||
</div> | </div> | ||
<div class="row"> | <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> | </div> | ||
</form> | |||
</div> | </div> | ||
</div> | </div> | ||
... | ... |
Please
register
or
sign in
to comment