12 lines
658 B
HTML
12 lines
658 B
HTML
<section class="dialog">
|
|
<div class="content">
|
|
<p class="heading-l pre" [innerHTML]="'help-mode.welcome-to-help-mode' | translate"></p>
|
|
<img src="assets/illustrations/illustration.gif" alt="" width="335" />
|
|
<p class="pre" [innerHTML]="'help-mode.clicking-anywhere-on' | translate"></p>
|
|
<mat-checkbox [checked]="doNotShowAgainOption" (change)="setDoNotShowAgainOption($event.checked)" color="primary">
|
|
{{ 'help-mode.options.do-not-show-again' | translate }}
|
|
</mat-checkbox>
|
|
</div>
|
|
<iqser-circle-button class="dialog-close" icon="iqser:close" (action)="close()"></iqser-circle-button>
|
|
</section>
|