| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @using ContractService.Authorization
- @{
- ViewBag.Title = L("HomePage");
- ViewBag.CurrentPageName = PermissionNames.Pages;
- string systemName = ViewBag.SystemName;
- //var systemName = SettingManager.GetSettingValue(IwbSettingNames.AdminSystemName);
- //string path = SettingManager.GetSettingValue(IwbSettingNames.HomePagePath);
- }
- @Html.Partial("Index_S", systemName)
- @*@section styles
- {
- <style>
- .content-wrapper {
- background: #fff;
- background-image: url('@(path)/@(IwbConsts.HomeImageName).@(IwbConsts.LoginHomeImageExt)');
- background-size: 100% 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .home-body {
- width: 100%;
- display: flex;
- justify-content: center;
- }
- .title {
- margin-top: -10%;
- color: #ffffff;
- font-size: 70px;
- font-weight: 600;
- padding: 15px 10px;
- letter-spacing: 10px;
- }
- .title-header {
- font-size: 100%;
- padding: 20px;
- text-align: center;
- }
- .title-name {
- padding: 0 20px;
- padding-right: 10px;
- text-align: center;
- font-size: 75%;
- border: 5px solid #fff;
- }
- </style>
- }
- <div class="container-fluid home-body">
- <div class="title">
- <div class="title-header">欢迎登陆</div>
- <div class="title-name">@(systemName)</div>
- </div>
- </div>*@
|