<apex:page showHeader="false" controller="LEXCommunityRouterController">
|
<style>
|
.wrapper {
|
margin: 10% auto 100px;
|
width: 540px;
|
text-align: center;
|
}
|
|
.log_img {
|
width: 70%;
|
border-radius: 4px;
|
}
|
|
.wrapper_content {
|
text-align: center;
|
font-size: 16px;
|
width: 500px;
|
padding: 20px;
|
min-height: 180px;
|
border: 1px solid #D8DDE6;
|
border-radius: 4px;
|
box-shadow: 4px 4px 10px rgb(0 0 0 / 26%);
|
margin-top: 10px;
|
}
|
|
.show_content {
|
min-height: 140px;
|
position: relative;
|
padding-bottom: 40px;
|
}
|
|
.content {
|
text-align: left;
|
margin-bottom: 10px;
|
color: #16325c;
|
line-height: 24px;
|
position: absolute;
|
left: 0;
|
right: 0;
|
top: 50%;
|
transform: translateY(-50%);
|
}
|
|
.content_type1 {
|
text-align: left;
|
}
|
|
.loginBtn {
|
background: #1797C0 !important;
|
color: #fff !important;
|
padding: 8px 16px !important;
|
border: none !important;
|
margin-top: 5px;
|
}
|
.content span {
|
font-size: 18px;
|
color: Green;
|
}
|
#OperationsManualURL {
|
font-size: 18px;
|
margin-left: 10px;
|
}
|
.headTile {
|
border-bottom: 1px solid;
|
height: 2rem;
|
}
|
.headTile h1 {
|
font-size: 20px;
|
color: red;
|
}
|
.notificationContent {
|
margin-top: 20px;
|
}
|
</style>
|
<div class="wrapper">
|
<apex:image value="{!$Resource.Olympus_Logo}" styleClass="log_img" />
|
<apex:outputPanel layout="block" styleClass="wrapper_content">
|
<apex:outputPanel layout="block" styleClass="show_content">
|
<apex:outputPanel layout="block" styleClass="content_type1">
|
<apex:outputPanel layout="block" styleClass="content">
|
<div class="headTile">
|
<h1>友情提醒:</h1>
|
</div>
|
<div class="notificationContent">
|
<h1>
|
<span>
|
为了提升经销商的用户体验、我们对原有系统进行了升级,在8月1日之前,您仍然可以使用旧系统,新系统
|
<apex:outputLink id="OperationsManualURL" target="_blank" value="\" >登录地址</apex:outputLink>
|
在使用新系统过程中,如有问题,请随时联系,谢谢。
|
</span>
|
<br/>
|
|
<span style="color:red;">(8月1日起,旧系统停止使用)</span>
|
</h1>
|
</div>
|
</apex:outputPanel>
|
</apex:outputPanel>
|
</apex:outputPanel>
|
<apex:form styleClass="form_warpper">
|
<apex:commandButton value="继续登录旧系统" action="{!FinishLoginFlowHome}" styleClass="loginBtn" />
|
<apex:commandButton value="登录新系统" action="{!LoginNewSystem}" styleClass="loginBtn" />
|
</apex:form>
|
</apex:outputPanel>
|
</div>
|
</apex:page>
|