| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>远程监控配置</title>
- <link href="/shares/js/yw/master1/liger/skins/ynet/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <link href="/shares/css/yw/master1/reset.css" rel="stylesheet" type="text/css" />
- <link href="/shares/css/yw/master1/${sessionScope.loginFrom}/jquery.jscrollpane.codrops1.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/jquery-1.6.4.min.js"></script>
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
- <script type="text/javascript" src="/shares/js/yw/master1/jquery.mousewheel.js"></script>
- <script type="text/javascript" src="/shares/js/yw/master1/jquery.jscrollpane.min.js"></script>
- <script type="text/javascript" src="/shares/js/yw/master1/scroll-startstop.events.jquery.js"></script>
- <script type="text/javascript" src="/shares/js/yw/master1/scroll.js"></script>
- <script src="/shares/xheditor/xheditor-1.1.14/xheditor-1.1.14-zh-cn.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- function check(){
- var rs = $.validate({name:"remoteAccount.loginName",model:[{type:"require",msg:"登录帐号不能为空!"}]});
- rs &= $.validate({name:"remoteAccount.loginPwd",model:[{type:"require",msg:"登录密码不能为空!"}]});
- if(rs){
- return true;
- }
- return false;
- }
- function back(){
- location.href = "${pageContext.request.contextPath }/MTRemoteAction.do?method=toRemoteMar";
- }
- </script>
- </head>
- <style type="text/css">
- body {
- overflow: hidden;
- background: #fff;
- }
- </style>
- <body ontouchmove="event.preventDefault();">
- <form action="MTRemoteAction.do?method=remoteAccount" method="post" onsubmit="return check();">
- <div class="s_title b10 f6">
- <img src="/shares/images/master1/gg_ico.png" width="27" height="26" />
- 帐号配置
- <div class="article_title">
- <input class="art_back" title="返回" name="" onclick="back();" type="button" />
- <input class="art_sub" title="保存" id="save" name="save" type="submit" value="" />
- </div>
- </div>
- <div id="jp-container" class="jp-container liuyan">
- <ul>
- <li></li>
- <li><span class="span_l f7">帐号<FONT COLOR="red">*</FONT>: </span>
- <input class="text_input1" name="remoteAccount.loginName" id="remoteAccount" value="${remoteAccount.loginName}" type="text" style="width: 220px;" />
- </li>
- <li>
- <span class="span_l f7">密码<FONT COLOR="red">*</FONT>:</span>
- <input class="text_input1" name="remoteAccount.loginPwd" id="remotePasswd" value="${remoteAccount.loginPwd}" type="password" style="width: 220px;" />
- </li>
- <li style="height: 250px;"></li>
- </ul>
- </div>
- </form>
- </body>
- </html>
|