forked from socialsensingbot/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.html
More file actions
55 lines (47 loc) · 2.15 KB
/
app.component.html
File metadata and controls
55 lines (47 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<div class="content" role="main">
<!-- <mat-menu x-position="before" #menu="matMenu">-->
<!-- <button mat-menu-item routerLink="/">-->
<!-- <mat-icon>home</mat-icon>-->
<!-- Home-->
<!-- </button>-->
<!-- <!– <button mat-menu-item routerLink="/map">–>-->
<!-- <!– <mat-icon>map</mat-icon>–>-->
<!-- <!– Map–>-->
<!-- <!– </button>–>-->
<!-- <button mat-menu-item routerLink="/dashboard" *ngIf="isAuthenticated && pref.ready &&-->
<!-- pref.featureSupported('dashboard')">-->
<!-- <!– <mat-icon>power_settings_new</mat-icon>–>-->
<!-- Dashboard-->
<!-- </button>-->
<!-- <button mat-menu-item routerLink="/login" *ngIf="!isAuthenticated">-->
<!-- <mat-icon>power_settings_new</mat-icon>-->
<!-- Login-->
<!-- </button>-->
<!-- <button mat-menu-item *ngIf="isAuthenticated" (click)="logout()">-->
<!-- <mat-icon>exit_to_app</mat-icon>-->
<!-- Logout-->
<!-- </button>-->
<!-- </mat-menu>-->
<div class="content-inner">
<router-outlet></router-outlet>
</div>
<!-- <mat-card>-->
<!-- <mat-card-content>-->
<!-- <form>-->
<!-- <div class="amplify-block">-->
<!-- <amplify-authenticator [usernameAttributes]="usernameAttributes"></amplify-authenticator>-->
<!-- </div>-->
<!-- </form>-->
<!-- </mat-card-content>-->
<!-- </mat-card>-->
<!-- Footer -->
<footer>
</footer>
</div>
<mat-progress-bar *ngIf="loading.showProgress"
[value]="loading.progressPercentage*100"
class="app-loading-progress"
mode="determinate"></mat-progress-bar>
<mat-spinner *ngIf="loading.showSpinner" [mode]="loading.spinnerMode" [style.opacity]="loading.opacity"
[value]="loading.progressPercentage*100"
class="app-loading-spinner"></mat-spinner>