| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
-
- <title>气瓶电子标签动态监管集成系统</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">
- <link rel="stylesheet" href="css/common/font.css" />
- <style>
- #box{width:100%;height:100%;position:absolute;border: 0px;}
- #box img{width:778px;height:500px;position:absolute;top:50%;left:50%;margin-top:-250px;margin-left:-389px}
- .input{height: 26px;width: 255px;line-height: 26px;}
- .span{font-size: 16px;}
- .select{height: 26px;width: 255px;}
- </style>
- <script language="JavaScript">
- if (window != top)
- top.location.href = location.href;
- </script>
- <script type="text/javascript">
- function checkNull(){
-
- return true;
- }
- function show(message) {
- $.messager.show({
- title: '提示信息',
- msg: message,
- timeout: 2000,
- showType: 'slide'
- });
- }
- function wait(){
-
- var un = document.getElementById("un").value;
- var ps = document.getElementById("ps").value;
-
- var validatecode = document.getElementById("validatecode").value;
- if(!un){
- show("用户名不能为空!!!");
- return false;
- }else if(!ps){
- show("密码不能为空!!!");
- return false;
- }else if(!validatecode){
- show("验证码不能为空!!!");
- return false;
- }else{
- $.messager.progress({
- title: '请稍等',
- msg: '检验和预加载数据中...',
- text: '检验加载中.......'
- });
- return true;
- }
- }
-
- function check(form) {
- document.myform.submit();
- }
- </script>
-
- </head>
-
- <body style="padding: 0px;margin: 0px;">
-
- <div id="box">
- <img src="images/login/login.jpg" alt="CNG气瓶电子动态监管系统" >
- <div style="position: absolute;top:50%;left:50%;margin-top:-90px;margin-left:-180px;width:auto;height:auto;border: 0px solid;" align="right">
- <form action="loginServlet.do" method="post" onsubmit="return wait();" name="myform">
- <table>
- <tr>
- <td>
- <span class="font span">登 陆 类 型:</span>
- </td>
- <td>
- <select name="modal" id="modal" class="font select">
- <option selected="selected" value="1">监管部门管理系统</option>
- <option value="4">充装站管理系统</option>
- <option value="2">检验站管理系统</option>
- <option value="3">改装厂管理系统</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>
- <span class="font span">用 户 名:</span>
- </td>
- <td>
- <input type="text" class="input" name="un" id="un" align="center"/>
- </td>
- </tr>
- <tr>
- <td>
- <span class="font span">密 码:</span>
- </td>
- <td>
- <input type="password" autocomplete="off" class="input" name="ps" align="center" id="ps"/>
- </td>
- </tr>
- <tr>
-
- <tr>
- <td>
-
- <span class="font span">验 证 码:</span>
- </td>
- <td>
- <input type="text" class="input" name="validatecode" align="center" id="validatecode"/>
-
- </td>
- <input style="background:url(yanzhengma.jsp) no-repeat;border:none;height:40px; position: absolute;margin-top: 100px;left: 278px;" readonly="readonly"/>
- </tr>
- </tr>
- <tr>
- <td></td>
- <td>
- <input type=button name="submit1" value="登陆" onclick="check(this.form)">
- <input type="submit" value="登陆" class="font"/>
- <input type="reset" value="重置" class="font"/>
- </td>
- </tr>
-
- </table>
- </form>
- </div>
- </div>
- </body>
- </html>
|