remoteAdd.jsp 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title>远程监控配置</title>
  9. <link href="/shares/js/yw/master1/liger/skins/ynet/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  10. <link href="/shares/css/yw/master1/reset.css" rel="stylesheet" type="text/css" />
  11. <link href="/shares/css/yw/master1/${sessionScope.loginFrom}/jquery.jscrollpane.codrops1.css" rel="stylesheet" type="text/css" />
  12. <script type="text/javascript" src="/shares/js/jquery-1.6.4.min.js"></script>
  13. <script type="text/javascript" src="/shares/js/constant.js"></script>
  14. <script type="text/javascript" src="/shares/js/common.js"></script>
  15. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
  16. <script type="text/javascript" src="/shares/js/yw/master1/jquery.mousewheel.js"></script>
  17. <script type="text/javascript" src="/shares/js/yw/master1/jquery.jscrollpane.min.js"></script>
  18. <script type="text/javascript" src="/shares/js/yw/master1/scroll-startstop.events.jquery.js"></script>
  19. <script type="text/javascript" src="/shares/js/yw/master1/scroll.js"></script>
  20. <script src="/shares/xheditor/xheditor-1.1.14/xheditor-1.1.14-zh-cn.min.js" type="text/javascript"></script>
  21. <script type="text/javascript">
  22. function check(){
  23. var rs = $.validate({name:"remoteAccount.loginName",model:[{type:"require",msg:"登录帐号不能为空!"}]});
  24. rs &= $.validate({name:"remoteAccount.loginPwd",model:[{type:"require",msg:"登录密码不能为空!"}]});
  25. if(rs){
  26. return true;
  27. }
  28. return false;
  29. }
  30. function back(){
  31. location.href = "${pageContext.request.contextPath }/MTRemoteAction.do?method=toRemoteMar";
  32. }
  33. </script>
  34. </head>
  35. <style type="text/css">
  36. body {
  37. overflow: hidden;
  38. background: #fff;
  39. }
  40. </style>
  41. <body ontouchmove="event.preventDefault();">
  42. <form action="MTRemoteAction.do?method=remoteAccount" method="post" onsubmit="return check();">
  43. <div class="s_title b10 f6">
  44. <img src="/shares/images/master1/gg_ico.png" width="27" height="26" />
  45. 帐号配置
  46. <div class="article_title">
  47. <input class="art_back" title="返回" name="" onclick="back();" type="button" />&nbsp;
  48. <input class="art_sub" title="保存" id="save" name="save" type="submit" value="" />
  49. </div>
  50. </div>
  51. <div id="jp-container" class="jp-container liuyan">
  52. <ul>
  53. <li></li>
  54. <li><span class="span_l f7">帐号<FONT COLOR="red">*</FONT>: </span>
  55. <input class="text_input1" name="remoteAccount.loginName" id="remoteAccount" value="${remoteAccount.loginName}" type="text" style="width: 220px;" />
  56. </li>
  57. <li>
  58. <span class="span_l f7">密码<FONT COLOR="red">*</FONT>:</span>
  59. <input class="text_input1" name="remoteAccount.loginPwd" id="remotePasswd" value="${remoteAccount.loginPwd}" type="password" style="width: 220px;" />
  60. </li>
  61. <li style="height: 250px;"></li>
  62. </ul>
  63. </div>
  64. </form>
  65. </body>
  66. </html>