|
|
|
|
<ion-header>
|
|
|
|
|
<ion-toolbar class="header-toolbar-new">
|
|
|
|
|
<ion-buttons slot="start">
|
|
|
|
|
<ion-back-button color="light" class="btnBack" defaultHref="/home"></ion-back-button>
|
|
|
|
|
</ion-buttons>
|
|
|
|
|
<ion-title color="light" > {{'changePassword,changePassword' | translate}}</ion-title>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ion-content padding>
|
|
|
|
|
|
|
|
|
|
<ion-grid>
|
|
|
|
|
|
|
|
|
|
<ion-row >
|
|
|
|
|
<ion-col [size]="4">
|
|
|
|
|
<img [src]="logo" class="logoHeader" />
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-row>
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
<br/>
|
|
|
|
|
<p class="headerTxt" color="light" > {{'changePassword,changePassword' | translate}}</p>
|
|
|
|
|
|
|
|
|
|
<ion-item class="item-input-login" >
|
|
|
|
|
|
|
|
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
|
|
|
|
<!-- <ion-label>{{'changePassword,currentPassword' | translate}}</ion-label> -->
|
|
|
|
|
<ion-input class="login-input" required type="password" placeholder="{{ts.trPK('changePassword','currentPassword')}}"[(ngModel)]="P_OLD_PASSWORD"></ion-input>
|
|
|
|
|
</ion-item>
|
|
|
|
|
<p class="headerTxt" color="light" > {{'changePassword,newPassword' | translate}}</p>
|
|
|
|
|
|
|
|
|
|
<ion-item class="item-input-login" >
|
|
|
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
|
|
|
|
<!-- <ion-label>{{'changePassword,newPassword' | translate}}</ion-label> -->
|
|
|
|
|
<ion-input class="login-input" required type="password" placeholder="{{ts.trPK('changePassword','newPassword')}}"
|
|
|
|
|
[(ngModel)]="P_NEW_PASSWORD">
|
|
|
|
|
</ion-input>
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
<ion-item class="item-input-login" >
|
|
|
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
|
|
|
|
<!-- <ion-label>{{'changePassword,confirmPassword' | translate}}</ion-label> -->
|
|
|
|
|
<ion-input class="login-input" required type="password" placeholder="{{ts.trPK('changePassword','confirmPassword')}}"
|
|
|
|
|
[(ngModel)]="P_Confirm_NEW_PASSWORD">
|
|
|
|
|
</ion-input>
|
|
|
|
|
</ion-item>
|
|
|
|
|
</ion-grid>
|
|
|
|
|
<page-trailer [small]="true"></page-trailer>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</ion-content>
|
|
|
|
|
<ion-footer>
|
|
|
|
|
<div class="centerDiv">
|
|
|
|
|
<ion-button class="button-login" ion-button (click)="submit()">{{ts.trPK('login','changepassword')}}</ion-button>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-footer>
|