Browse Source

Fixed not found script and style tags error when logging out

pull/4647/head
Galip Tolga Erdem 6 years ago
parent
commit
b84eaa5141
  1. 6
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/LoggedOut.cshtml

6
modules/account/src/Volo.Abp.Account.Web/Pages/Account/LoggedOut.cshtml

@ -3,8 +3,12 @@
@using Volo.Abp.Account.Localization
@using Microsoft.AspNetCore.Mvc.Localization
@using Volo.Abp.Account.Web.Pages.Account
@using Volo.Abp.AspNetCore.Mvc.UI.Theming
@inject IThemeManager ThemeManager
@inject IHtmlLocalizer<AccountResource> L
@{
Layout = ThemeManager.CurrentTheme.GetApplicationLayout();
}
@section scripts {
<abp-script-bundle name="@typeof(LoggedOutModel).FullName">
<abp-script src="/Pages/Account/LoggedOut.js"/>

Loading…
Cancel
Save