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.
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
|
7 years ago
|
|
||
|
|
<ion-content padding>
|
||
|
|
<ion-grid class="customGrid">
|
||
|
|
<ion-row>
|
||
|
|
<ion-col class="colPad">
|
||
|
|
<ion-img class="centerDiv" src="../assets/imgs/CS.png"></ion-img>
|
||
|
|
</ion-col>
|
||
|
|
</ion-row>
|
||
|
|
<ion-row>
|
||
|
|
<ion-col>
|
||
|
|
<P class="pageTitle text-caps">{{'login,title' | translate}}</P>
|
||
|
|
</ion-col>
|
||
|
|
</ion-row>
|
||
|
|
</ion-grid>
|
||
|
|
|
||
|
|
<ion-item>
|
||
|
|
<img class="item-icon" src="assets/imgs/username.png" item-start />
|
||
|
|
<ion-label>{{'login,userName' | translate}}</ion-label>
|
||
|
|
<ion-input required type="text" [(ngModel)]="memberLogin.P_USER_NAME">
|
||
|
|
</ion-input>
|
||
|
|
</ion-item>
|
||
|
|
|
||
|
|
<ion-item>
|
||
|
|
<img class="item-icon" src="assets/imgs/password.png" item-start />
|
||
|
|
<ion-label>{{'login,password' | translate}}</ion-label>
|
||
|
|
<ion-input required type="password" [(ngModel)]="memberLogin.P_PASSWORD">
|
||
|
|
</ion-input>
|
||
|
|
</ion-item>
|
||
|
|
|
||
|
|
<div class="centerDiv signupDiv" *ngIf="isAppleStore==true">
|
||
|
|
<a (click)="signUp()">{{ts.trPK('login','signup')}}</a>
|
||
|
|
</div>
|
||
|
|
<div class="gridDiv">
|
||
|
|
<button class="gridBtn" ion-button (click)="changeLanguage(2)">English</button>
|
||
|
|
<button class="gridBtn arTxt" ion-button (click)="changeLanguage(1)">عربي</button>
|
||
|
|
</div>
|
||
|
|
<ion-footer>
|
||
|
|
<div class="centerDiv">
|
||
|
|
<button ion-button (click)="http_call()">{{ts.trPK('login','login')}}</button>
|
||
|
|
</div>
|
||
|
|
<br/>
|
||
|
|
<div class="centerDiv">
|
||
|
|
<a (click)="forgetPasswordPage()">{{ts.trPK('login','forgot-password')}}</a>
|
||
|
|
</div>
|
||
|
|
</ion-footer>
|
||
|
|
</ion-content>
|
||
|
|
|