datasurvey/src/main/webapp/app/layouts/main/main.component.html

22 lines
610 B
HTML
Raw Normal View History

2021-07-04 01:33:58 +00:00
<!-- Guest (not logged in) -->
<ng-template [ngIf]="!isAuthenticated()" [ngIfElse]="authenticated">
<div class="" style="overflow-x: hidden">
2021-07-03 21:48:27 +00:00
<router-outlet></router-outlet>
</div>
2021-07-04 01:33:58 +00:00
</ng-template>
2021-07-03 21:48:27 +00:00
2021-07-04 01:33:58 +00:00
<!-- Authenticated (logged in) -->
<ng-template #authenticated>
<div class="wrapper">
<div class="sidebar" data-color="brown" data-active-color="yellow">
<jhi-sidebar></jhi-sidebar>
</div>
<div class="main-panel" style="overflow-x: hidden">
<jhi-navbar></jhi-navbar>
<div class="p-5">
<router-outlet></router-outlet>
</div>
</div>
</div>
</ng-template>