mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
834 B
26 lines
834 B
<div class="row">
|
|
<div class="mx-auto col col-md-5">
|
|
<ng-container *ngIf="(isMultiTenancyEnabled$ | async) && isTenantBoxVisible">
|
|
<abp-tenant-box *abpReplaceableTemplate="{ componentKey: tenantBoxKey }"></abp-tenant-box>
|
|
</ng-container>
|
|
|
|
<div class="abp-account-container">
|
|
<div
|
|
*ngIf="enableLocalLogin$ | async; else disableLocalLoginTemplate"
|
|
class="card mt-3 shadow-sm rounded"
|
|
>
|
|
<div class="card-body p-5">
|
|
<router-outlet></router-outlet>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ng-template #disableLocalLoginTemplate>
|
|
<div class="alert alert-warning">
|
|
<strong>{{ 'AbpAccount::InvalidLoginRequest' | abpLocalization }}</strong>
|
|
{{ 'AbpAccount::ThereAreNoLoginSchemesConfiguredForThisClient' | abpLocalization }}
|
|
</div>
|
|
</ng-template>
|