| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- String modal = request.getParameter("modal");
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
- <title>CNG气瓶实时动态监管集成系统登录页面</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="气瓶,标签,动态监管,登陆">
- <meta http-equiv="description" content="气瓶电子标签动态监管集成系统">
- <link rel="stylesheet" type="text/css" href="css/easyui/themes/default/easyui.css">
- <link rel="stylesheet" type="text/css" href="css/easyui/themes/icon.css">
- <link rel="stylesheet" type="text/css" href="css/easyui/demo/demo.css">
- <script type="text/javascript" src="css/easyui/jquery.min.js"></script>
- <script type="text/javascript" src="css/easyui/jquery.easyui.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="css/easyui/locale/easyui-lang-zh_CN.js" charset="utf-8"></script>
- <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
- <script type="text/javascript" src="js/common/area.js"></script>
- <link rel="stylesheet" href="css/common/font.css" />
- <style type="text/css">
- #box{width:778px;height:500px;position:absolute;top:50%;left:50%;margin-top:-250px;margin-left:-389px;}
- .input{height: 26px;width: 155px;}
- </style>
- <script type="text/javascript">
- function checkNull(){
- var un=document.getElementById("un").value;
- }
- function wait(){
- $.messager.progress({
- title: '请稍等',
- msg: '检验和预加载数据中...',
- text: '检验加载中.......'
- });
- return true;
- }
- </script>
- </head>
-
- <body>
- <div id="box">
- <img src="images/login.png" >
-
- <div style="position: absolute;top:50%;left:50%;margin-top:-88px;margin-left:80px;width:auto;height:auto;border: 0px solid;" align="right">
- <form action="loginServlet.do" method="post" onsubmit="wait();">
- <table>
- <tr>
- <td>
- <span class="font">用户名:</span>
- </td>
- <td>
- <input type="text" class="input" name="un" id="un" align="center"/>
- </td>
- </tr>
- <tr>
- <td>
- <span class="font">密 码:</span>
- </td>
- <td>
- <input type="password" autocomplete="off" class="input" name="ps" align="center"/>
- </td>
- </tr>
- <tr>
-
- <tr>
- <td>
-
- <span class="font">验证码:</span>
- </td>
- <td>
- <input type="text" class="input" name="validatecode" align="center"/>
-
- </td>
- <input style="background:url(yanzhengma.jsp) no-repeat;border:none;height:40px; position: absolute;margin-top: 74px;left: 140px;" readonly="readonly"/>
- </tr>
- </tr>
- <tr>
- <td></td>
- <td>
- <input type="submit" value="登陆" class="font"/>
- <input type="reset" value="重置" class="font"/>
- </td>
- </tr>
- <input type="hidden" name="modal" value="<%=modal %>"/>
-
- </table>
- </form>
- </div>
- </div>
- </body>
- </html>
|