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.
24 lines
689 B
24 lines
689 B
@page "/"
|
|
@using Volo.Abp.MultiTenancy
|
|
@inherits BookStoreComponentBase
|
|
@inject ICurrentTenant CurrentTenant
|
|
@inject AuthenticationStateProvider AuthenticationStateProvider
|
|
|
|
<div class="page-content">
|
|
<div style="text-align: center">
|
|
|
|
<Alert Type="@AlertType.Success"
|
|
Message="Success"
|
|
Description=" Congratulations, BookStore is successfully running!"
|
|
ShowIcon="true"/>
|
|
|
|
<Divider/>
|
|
|
|
<p>@L["LongWelcomeMessage"]</p>
|
|
|
|
@if (!CurrentUser.IsAuthenticated)
|
|
{
|
|
<a class="btn btn-primary" href="Account/Login" ><i class="fa fa-sign-in"></i> @L["Login"]</a>
|
|
}
|
|
</div>
|
|
</div>
|
|
|