This commit is contained in:
Drew Ansbacher
2021-07-02 17:05:26 -06:00
committed by Aiden McClelland
parent 412c10a859
commit 27072b5a3b
13 changed files with 156 additions and 88 deletions

View File

@@ -1,8 +1,12 @@
<ion-app>
<ion-content *ngIf="stateService.loading; else loaded">
<h2 color="light">Connecting to Embassy</h2>
</ion-content>
<ng-template #loaded>
<ion-header>
<ion-toolbar color="primary">
<ion-title>
Embassy Setup Wizard
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content *ngIf="!stateService.loading" class="has-header">
<ion-router-outlet></ion-router-outlet>
</ng-template>
</ion-content>
</ion-app>