mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
8 lines
484 B
HTML
8 lines
484 B
HTML
<ds-themed-loading *ngIf="(loading | async) || (isAuthenticated | async)" class="m-5"></ds-themed-loading>
|
|
<div *ngIf="!(loading | async) && !(isAuthenticated | async)" class="px-4 py-3 login-container">
|
|
<ng-container *ngFor="let authMethod of (authMethods | async); let last = last">
|
|
<ds-log-in-container [authMethod]="authMethod" [isStandalonePage]="isStandalonePage"></ds-log-in-container>
|
|
<div *ngIf="!last" class="dropdown-divider my-2"></div>
|
|
</ng-container>
|
|
</div>
|