Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x | <div *ngIf="selectedType$ | async as selectedType">
<h1>{{ 'account.punchout.create.heading' | translate : { '0': selectedType } }}</h1>
<ish-error-message [error]="error$ | async" />
<p>{{ 'account.punchout.create.description' | translate : { '0': selectedType } }}</p>
<div class="row">
<div class="col-md-10 col-xl-8">
<ish-punchout-user-form [punchoutType]="selectedType" (submitUser)="submitForm($event)" />
</div>
</div>
</div>
<ish-loading *ngIf="loading$ | async" />
|