|
- @{
- Layout = null;
- }
-
- <!DOCTYPE html>
-
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>统一身份认证平台</title>
- <script src="~/Content/jquery/jquery-1.10.2.min.js"></script>
- <script>
- function request(d) { for (var c = location.search.slice(1).split("&"), a = 0; a < c.length; a++) { var b = c[a].split("="); if (b[0] == d) if ("undefined" == unescape(b[1])) break; else return unescape(b[1]) } return "" };
- </script>
-
- <script type="text/javascript">
- $(function () {
- setTimeout(function () {
- location.href = '/Home/GoToApplication?redi=1&appid=' + request('appid');
- }, 1000);
- });
- </script>
- </head>
- <body>
- <div style="width: 100%; text-align: center;">
- <div style="margin-top: 10%;">
- <img src="~/Content/sso/fx.png" />
- </div>
- <div style="color: #959595; font-size: 14px; padding-top: 40px;">IDENTITY AUTHENTICATION</div>
- <div style="text-align:center;font-size:26px; line-height:40px; padding-bottom:25px; color:#3d3d3d;">统一身份认证平台</div>
- <div style="text-align:center; font-size:15px; color:#fe7511;">系统认证中,请耐心等待...</div>
- </div>
- </body>
- </html>
|