123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>登录-微信接口服务平台</title>
- <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="">
- <meta name="author" content="">
- <link rel="stylesheet" type="text/css" href="/WeiXinAPP/lib/bootstrap/css/bootstrap.min.css">
- <link rel="stylesheet" type="text/css" href="/WeiXinAPP/lib/bootstrap/css/bootstrap-datetimepicker.min.css">
- <link rel="stylesheet" type="text/css" href="/WeiXinAPP/stylesheets/theme.css">
- <link href="//cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
-
- <script src="/WeiXinAPP/lib/jquery-1.7.2.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- function GetQueryString(name) {
- var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
- var r = location.search.substr(1).match(reg);
-
- if (r != null) return unescape(decodeURI(r[2])); return null;
- }
- </script>
- <!-- Demo page code -->
- <style type="text/css">
- #line-chart {
- height: 300px;
- width: 800px;
- margin: 0px auto;
- margin-top: 1em;
- }
- .brand {
- font-family: georgia, serif;
- }
- .brand .first {
- color: #ccc;
- font-style: italic;
- }
- .brand .second {
- color: #fff;
- font-weight: bold;
- }
- .fa {
- margin:0px 4px;
- }
- /*分页样式一*/
- .page_css {
- padding-top: 15px;
- }
- .page_css a {
- padding: 4px 6px;
- border: solid 1px #ddd;
- background: #fff;
- text-decoration: none;
- margin-right: 3px;
- margin-left: 3px;
- }
- .page_css a:visited {
- padding: 4px 6px;
- border: solid 1px #ddd;
- background: #fff;
- text-decoration: none;
- }
- .page_css a:hover {
- color: #fff;
- background: #0A8EE2;
- border-color: #0A8EE2;
- text-decoration: none;
- }
- .page_css .nowpage {
- color:#0A8EE2;
- padding: 4px 6px;
- font-weight: bold;
- border: none;
- }
- /*分页样式二*/
- .pages {
- padding-top: 15px;
- }
- .pages a {
- padding: 4px 6px;
- border: solid 1px #ddd;
- background: #fff;
- text-decoration: none;
- margin-right: 3px;
- margin-left: 3px;
- }
- .pages a:visited {
- padding: 4px 6px;
- border: solid 1px #ddd;
- background: #fff;
- text-decoration: none;
- }
- .pages .cpb {
- padding: 4px 6px;
- font-weight: bold;
- color: #000000;
- border: none;
- }
- .pages a:hover {
- color: #fff;
- background: #ffa501;
- border-color: #ffa501;
- text-decoration: none;
- }
- #loading {
- position: fixed;
- _position: absolute;
- top: 50%;
- left: 50%;
- width: 124px;
- height: 124px;
- overflow: hidden;
- background: url(/weixinapp/images/LoadBox.gif) no-repeat;
- z-index: 7000;
- margin: -62px 0 0 -62px;
- }
- </style>
- <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="/weixinapp/lib/html5.js"></script>
- <![endif]-->
- <!-- Le fav and touch icons -->
- </head>
- <!--[if lt IE 7 ]> <body class="ie ie6"> <![endif]-->
- <!--[if IE 7 ]> <body class="ie ie7 "> <![endif]-->
- <!--[if IE 8 ]> <body class="ie ie8 "> <![endif]-->
- <!--[if IE 9 ]> <body class="ie ie9 "> <![endif]-->
- <!--[if (gt IE 9)|!(IE)]><!-->
- <body class="">
- <!--<![endif]-->
- <div id="loading" style="display: none;"></div>
- <div class="navbar">
- <div class="navbar-inner">
- <ul class="nav pull-right">
- <li id="fat-menu" class="dropdown">
- <a href="#" role="button" class="dropdown-toggle" data-toggle="dropdown">
- <i class="icon-user"></i> <%=LYFZ.WeixinServers.WeiXinAPP.CommonHandler.GetAdminUser(this).UserName %>
- <i class="icon-caret-down"></i>
- </a>
- <ul class="dropdown-menu">
- <li><a tabindex="-1" href="#"><%=LYFZ.WeixinServers.WeiXinAPP.CommonHandler.GetAdminUser(this).UserName %></a></li>
- <li class="divider"></li>
- <li><a tabindex="-1" href="/weixinapp/Logout.aspx">退出登录</a></li>
- </ul>
- </li>
- </ul>
- <a class="brand" href="/weixinapp/index.aspx"><span class="first"></span> <span class="second">利亚方舟-微信接口服务平台</span></a>
- </div>
- </div>
|