definma-ui/src/app/help/help.component.html

15 lines
622 B
HTML
Raw Normal View History

<h3>Help</h3>
<ng-container [ngSwitch]="route">
<p *ngSwitchCase="'/'">Please log in for further access. If you do not have an account yet, please contact
2020-08-26 19:25:31 +02:00
<a [href]="'mailto:' + d.contact.mail">{{d.contact.name}}</a>.
</p>
<p *ngSwitchCase="'/home'">Please log in for further access. If you do not have an account yet, please contact
2020-08-26 19:25:31 +02:00
<a [href]="'mailto:' + d.contact.mail">{{d.contact.name}}</a>.
</p>
<p *ngSwitchDefault>
Sadly, currently there is no help available for this page. Please contact
2020-08-26 19:25:31 +02:00
<a [href]="'mailto:' + d.contact.mail">{{d.contact.name}}</a> for further questions.
</p>
</ng-container>