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.
11 lines
327 B
11 lines
327 B
@page
|
|
@using Volo.Abp.Users
|
|
@model Volo.Abp.SettingManagement.DemoApp.Pages.IndexModel
|
|
@inject ICurrentUser CurrentUser
|
|
|
|
<h3>Welcome to the SettingManagement demo application.</h3>
|
|
@if (!CurrentUser.IsAuthenticated)
|
|
{
|
|
<a abp-button="Primary" href="/Account/Login" class="px-4"><i class="fa fa-sign-in"></i> Login </a>
|
|
}
|