Advertisement
coffeecode12

dialog pop create product

Oct 11th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <h2 mat-dialog-title>
  2. <span class="add-product-title" data-testid="P_TITLE_POPUP">{{data.message}}</span>
  3. <button class="button-false" mat-dialog-close mat-dialog-close="false" data-testid="BTN_CLOSE_MODAL">
  4. <span class="x" aria-hidden="true" data-testid="SPN_CLOSE">&times;</span>
  5. </button>
  6. </h2>
  7. <mat-dialog-content class="mat-typography" data-testid="MAT_DIALOG_CONTENT">
  8. <div data-testid="DESC_CONTENT" class="add-prd-card" >
  9. <div class="row" style="padding: 30px;" >
  10. <div class="col-md-4">
  11. <label class="wrapper-app">My Wrapper Aplication</label>
  12. <div class="list-wrapper" *ngFor="let item of listWrapperApp;let i =index">
  13. <label class="list-name" (click)="wrap(item.id)">
  14. {{item.name}} &nbsp;
  15. <img src="../../../assets/icon/arr-product.svg" width="11.18px" height="6.59px">
  16. </label>
  17. </div>
  18. </div>
  19. <div class="col-md-4">
  20. <label class="wrapper-app">API Product</label>
  21. <div class="list-wrapper">
  22. <label class="check-question" *ngFor="let listcheck of listCheckBoxWrapperApp">
  23. <p class="list-checked" data-testid="P_TERM_CHECKED">
  24. {{listcheck.name}}
  25. </p>
  26.  
  27. <input type="checkbox" data-testid="INPT_CHECKBOX" [(ngModel)]="listcheck.selected" ngDefaultControl (change)="agreementTnc(listcheck.selected)">
  28. <span class="checkmark" data-testid="SPN_CHECKMARK"></span>
  29.  
  30. </label>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </mat-dialog-content>
  36.  
  37. <mat-dialog-actions class="modal-footer" data-testid="MAT-DIALOG_ACTION">
  38. <button mat-button class="cta cta-gradient-blue {{disableButton?'disabled':''}}" (click)="onNoClick()" cdkFocusInitial data-testid="BTN_MODAL_TRUE"> {{data.btnClose}}
  39. </button>
  40. </mat-dialog-actions>
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement