You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<ion-header>
|
|
|
|
|
<ion-toolbar>
|
|
|
|
|
<nav-buttons ></nav-buttons>
|
|
|
|
|
<ion-title>{{'login,forgot-password' | translate}}</ion-title>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ion-content padding>
|
|
|
|
|
|
|
|
|
|
<ion-grid>
|
|
|
|
|
|
|
|
|
|
<ion-item>
|
|
|
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
|
|
|
|
<ion-label>{{'changePassword.newPassword' | translate}}</ion-label>
|
|
|
|
|
<ion-input required type="password"
|
|
|
|
|
[(ngModel)]="P_NEW_PASSWORD">
|
|
|
|
|
</ion-input>
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
<ion-item>
|
|
|
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
|
|
|
|
<ion-label>{{'changePassword.confirmPassword' | translate}}</ion-label>
|
|
|
|
|
<ion-input required type="password"
|
|
|
|
|
[(ngModel)]="P_Confirm_NEW_PASSWORD">
|
|
|
|
|
</ion-input>
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
</ion-grid>
|
|
|
|
|
<page-trailer [small]="true"></page-trailer>
|
|
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
|
<ion-grid>
|
|
|
|
|
<ion-row class="ion-justify-content-center">
|
|
|
|
|
<ion-col [size]="10" [sizeLg]="8" [sizeXl]="6" no-padding>
|
|
|
|
|
<ion-button (click)="onForgot()" [disabled]="!isValidForm()" expand="block">
|
|
|
|
|
{{'general,submit' | translate}} </ion-button>
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-row>
|
|
|
|
|
</ion-grid>
|
|
|
|
|
</footer>
|
|
|
|
|
</ion-content>
|