| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <%@ 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="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <link rel="stylesheet" href="css/common/font.css" />
- <link rel="stylesheet" href="css/login/login.css" />
- <script type="text/javascript" src="js/easyui/XiuCai.index.js"> </script>
- <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">
- <style>
- #centerdiv{width: 778px;height: 500px; position: absolute;top:50%;margin-top: -250px;left: 50%;margin-left: -389px;}
- #innerdiv{width: auto;height: auto; position: absolute;top: 161px;left: 460px;text-align: right;}
- #signup_password{
- background: url(images/login/password.png) no-repeat 0px 8px;
- border:0px
-
- }
- #signup_username{
- background: url(images/login/username.png) no-repeat 0px 8px;
- border:0px
-
- }
- #signup_code{
- background: url(images/login/code.png) no-repeat 0px 8px;
- border:0px
- }
- </style>
- <script type="text/javascript">
- $(document).ready(function(){
- var un=document.getElementById("signup_username");
- un.focus();
- });
- function wait(){
- $.messager.progress({
- title: '请稍等',
- msg: '检验和预加载数据中...',
- text: '检验加载中.......'
- });
- return true;
- }
- </script>
- </head>
-
- <body>
- <div id="centerdiv">
- <div>
- <img alt="" src="images/login.png"/>
- </div>
- <div id="innerdiv">
- <form action="loginServlet.do" method="post" id="loginform" onsubmit="wait();">
-
- <input type="hidden" name="modal" value="<%=modal %>"/>
-
- <input type="text" name="un" id="signup_username" class="textindent"/><div style="width: 100%;height: 10px;"></div>
- <input type="password" name="ps" autocomplete="off" id="signup_password" class="textindent"/><div style="width: 100%;height: 10px;"></div>
- <input type="text" name="validatecode" id="signup_code" class="textindent" /><div style="width: 100%;height: 10px;"></div>
- <input style="background:url(yanzhengma.jsp) no-repeat;border:none;height:40px; position: absolute;margin-top: -40px;left: 160px;" readonly="readonly"/>
- <input type="submit" value="登录" class="submit"/> <input type="reset" value="重置" class="submit"/>
-
- </div>
- </form>
- </div>
- </body>
- </html>
|