Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <div>
  2. <button (click)="logout()">התנתק</button>&nbsp;
  3. <button (click)="router_srv.navigateByUrl('ChangePassword')">שנה סיסמה</button>
  4. </div>
  5. <div id="owner">
  6. <h1>{{accountDetails}}</h1>
  7. <app-account-owner [owner]="currentOwner" [edit]="editAccountOwner"></app-account-owner>
  8. <button *ngIf="!editAccountOwner" (click)="editAccountOwner = !editAccountOwner">
  9. ערוך פרטי בעל חשבון
  10. </button>
  11. <button *ngIf="editAccountOwner" (click)="editAccountOwner = !editAccountOwner;updateOwner()">
  12. סיים עריכת פרטי בעל חשבון
  13. </button>
  14. </div>
  15. <div id="transaction">
  16. <p>
  17. <label for="amount">סכום:</label>
  18. <input required type="number" min="0" id="amount" (input)="currentAmount=$event.target.value;">
  19. <br>
  20. <label for="asmachta">אסמכתא:</label>
  21. <input required type="text" id="asmachta" [(ngModel)]="currentTransactionAsmachta">
  22. <br>
  23. <label for="taarich">תאריך:</label>
  24. <input required type="date" id="taarich" [(ngModel)]="currentTransactionDate">
  25. <br>
  26. <label for="sugpeula">פעולה מבוקשת:</label>
  27. <br>
  28. <select required id="sugpeula" [(ngModel)]="currentTransactionType">
  29. <option *ngFor="let typename of transactionTypeNames; let i=index" value="{{i}}">{{typename}} </option>
  30. </select>
  31.  
  32. <br>
  33. <button (click)='doTransaction()'>בצע פעולה</button>
  34. </p>
  35. <textarea id="notice" rows="4" cols="50">
  36. <p dir="rtl" *ngIf="lastActionFail">
  37. פעולתך נדחתה עקב חריגה צפויה מתקרת אשראי של
  38. <bdo dir="ltr">{{limit | currency:'ILS'}}</bdo>
  39. </p>
  40. <p *ngIf="!lastActionFail">{{ transaction }}</p>
  41. <p [class.minus]="currentBalance < 0" *ngIf="!lastActionFail">Your current balance is: {{currentBalance | currency:'ILS'}}</p>
  42. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement