Frontend/src/app/app.component.html

22 lines
737 B
HTML

<cre-header></cre-header>
<cre-global-alert-handler></cre-global-alert-handler>
<div class="pb-5">
<div class="dark-background"></div>
<router-outlet></router-outlet>
<div class="offline-server-card-wrapper" [hidden]="isServerOnline">
<div class="dark-background"></div>
<mat-card class="x-centered y-centered">
<mat-card-header>
<mat-card-title>Erreur de connexion</mat-card-title>
</mat-card-header>
<mat-card-content>
<p>Le serveur est présentement hors ligne. Réessayez plus tard.</p>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="accent" (click)="reload()">Réessayer</button>
</mat-card-actions>
</mat-card>
</div>
</div>