123
chenjingwu
2024-04-11 1a1303f4f3c933dcfb67df7f1f630159e6ee0740
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<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>
                                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;为了提升经销商的用户体验、我们对原有系统进行了升级,在8月1日之前,您仍然可以使用旧系统,新系统
                                    <apex:outputLink id="OperationsManualURL" target="_blank" value="\" >登录地址</apex:outputLink>
                                    在使用新系统过程中,如有问题,请随时联系,谢谢。
                                </span>
                                <br/>
                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                                <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>