mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
setup wizard first draft
This commit is contained in:
committed by
Aiden McClelland
parent
ce514646ff
commit
b31d15bac5
11
setup-wizard/src/app/app.component.html
Normal file
11
setup-wizard/src/app/app.component.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<ion-app>
|
||||
<ion-content *ngIf="stateService.loading; else loaded">
|
||||
<h2 color="light">Connecting to Embassy</h2>
|
||||
</ion-content>
|
||||
<ng-template #loaded>
|
||||
<ion-content *ngIf="error">
|
||||
<h2 color="light">{{ error }}</h2>
|
||||
</ion-content>
|
||||
<ion-router-outlet *ngIf="!error"></ion-router-outlet>
|
||||
</ng-template>
|
||||
</ion-app>
|
||||
Reference in New Issue
Block a user