2020-08-20 10:42:02 +02:00
|
|
|
<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>.
|
2020-08-20 10:42:02 +02:00
|
|
|
</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>.
|
2020-08-20 10:42:02 +02:00
|
|
|
</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.
|
2020-08-20 10:42:02 +02:00
|
|
|
</p>
|
|
|
|
</ng-container>
|