1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @using Abp.Configuration
- @using WeApp.Authorization
- @using WeApp.Configuration
- @{
- ViewBag.ActiveMenu = PermissionNames.Pages; //The menu item will be active for this page.
- var systemName = SettingManager.GetSettingValue(IwbSettingNames.AdminSystemName);
- string path = SettingManager.GetSettingValue(IwbSettingNames.HomePagePath);
- ViewBag.Title = systemName;
- }
- @section css{
- <style>
- .content, .container-fluid, .content-wrapper {
- padding: 0 !important;
- }
- .body {
- width: 100%;
- height: calc(100vh - 48px );
- background: url('@(path)/@(IwbConsts.HomeImageName).@(IwbConsts.LoginHomeImageExt)') 0 / cover fixed;
- font-weight: 600;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #000;
- position: relative;
- }
- .first {
- margin: -10% 0 10px;
- font-size: 50px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .first img {
- width: 80px;
- height: 80px;
- margin-right: 10px;
- }
- .second {
- font-size: 65px;
- }
- .footer {
- width: 100%;
- text-align: center;
- position: absolute;
- bottom: 30px;
- left: 0;
- color:#9BA5BA;
- }
- .main-footer {
- display: none;
- }
- </style>
- }
- <div class="body no-select">
- <div class="first">
- <img src="/Content/Image/logo.png" />
- <span>欢迎登录</span>
- </div>
- <div class="second">@systemName</div>
- <div class="footer">@Html.Raw(SettingManager.GetSettingValue(IwbSettingNames.HtmlPagesFooter))</div>
- </div>
|