mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
25 lines
772 B
25 lines
772 B
@page
|
|
@inherits Acme.BookStore.Web.Pages.BookStorePageBase
|
|
@model Acme.BookStore.Web.Pages.IndexModel
|
|
@section styles {
|
|
<abp-style-bundle>
|
|
<abp-style src="/Pages/Index.css" />
|
|
</abp-style-bundle>
|
|
}
|
|
@section scripts {
|
|
<abp-script-bundle>
|
|
<abp-script src="/Pages/Index.js" />
|
|
</abp-script-bundle>
|
|
}
|
|
<abp-card>
|
|
<abp-card-header>@L["Welcome"]</abp-card-header>
|
|
<abp-card-body>
|
|
<p>@L["LongWelcomeMessage"]</p>
|
|
@if (!CurrentUser.IsAuthenticated)
|
|
{
|
|
<p><a abp-button="Primary" href="/Account/Login"><i class="fa fa-sign-in"></i> @L["Login"]</a></p>
|
|
}
|
|
<hr />
|
|
<p class="text-right"><a href="https://abp.io?ref=tmpl" target="_blank">abp.io</a></p>
|
|
</abp-card-body>
|
|
</abp-card>
|