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 16 17 18 19 20 21 22 | 1x | <div class="content-page">
<ish-breadcrumb />
<h1>{{ 'helpdesk.contact_us.heading' | translate }}</h1>
<ng-container *ngIf="(success$ | async) === undefined; else contactConfirmation">
<div class="row">
<div class="col-md-10 col-lg-8 col-xl-7">
<ish-contact-form (request)="createRequest($event)" />
</div>
</div>
<p [innerHTML]="'helpdesk.user_service.message' | translate"></p>
</ng-container>
<ng-template #contactConfirmation>
<ish-contact-confirmation [success]="success$ | async" />
</ng-template>
<ish-loading *ngIf="loading$ | async" />
</div>
|