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 | 1x | <div class="content-page">
<ish-breadcrumb />
<h1>{{ 'helpdesk.contact_us.heading' | translate }}</h1>
@if ((success$ | async) === undefined) {
<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>
} @else {
<ish-contact-confirmation [success]="success$ | async" />
} @if (loading$ | async) {
<ish-loading />
}
</div>
|