login3.jsp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@page import="org.jeecgframework.core.util.SysThemesUtil,org.jeecgframework.core.enums.SysThemesEnum"%>
  3. <%@include file="/context/mytags.jsp"%>
  4. <!DOCTYPE html>
  5. <%
  6. String lang = org.jeecgframework.core.util.BrowserUtils.getBrowserLanguage(request);
  7. String langurl = "plug-in/mutiLang/" + lang +".js";
  8. SysThemesEnum sysTheme = SysThemesUtil.getSysTheme(request);
  9. String lhgdialogTheme = SysThemesUtil.getLhgdialogTheme(sysTheme);
  10. %>
  11. <html>
  12. <head>
  13. <title></title>
  14. <link rel="shortcut icon" href="resources/fc/images/icon/favicon.ico">
  15. <script src=<%=langurl%> type="text/javascript"></script>
  16. <!--[if lt IE 9]>
  17. <script src="plug-in/login/js/html5.js"></script>
  18. <![endif]-->
  19. <!--[if lt IE 7]>
  20. <script src="plug-in/login/js/iepng.js" type="text/javascript"></script>
  21. <script type="text/javascript">
  22. EvPNG.fix('div, ul, img, li, input'); //EvPNG.fix('包含透明PNG图片的标签'); 多个标签之间用英文逗号隔开。
  23. </script>
  24. <![endif]-->
  25. <link href="plug-in/login/css/zice.style.css" rel="stylesheet" type="text/css" />
  26. <link href="plug-in/login/css/buttons.css" rel="stylesheet" type="text/css" />
  27. <link href="plug-in/login/css/icon.css" rel="stylesheet" type="text/css" />
  28. <link rel="stylesheet" type="text/css" href="plug-in/login/css/tipsy.css" media="all" />
  29. <style type="text/css">
  30. html {
  31. background-image: none;
  32. }
  33. label.iPhoneCheckLabelOn span {
  34. padding-left: 0px
  35. }
  36. #versionBar {
  37. background-color: #212121;
  38. position: fixed;
  39. width: 100%;
  40. height: 35px;
  41. bottom: 0;
  42. left: 0;
  43. text-align: center;
  44. line-height: 35px;
  45. z-index: 11;
  46. -webkit-box-shadow: black 0px 10px 10px -10px inset;
  47. -moz-box-shadow: black 0px 10px 10px -10px inset;
  48. box-shadow: black 0px 10px 10px -10px inset;
  49. }
  50. .copyright {
  51. text-align: center;
  52. font-size: 10px;
  53. color: #CCC;
  54. }
  55. .copyright a {
  56. color: #A31F1A;
  57. text-decoration: none
  58. }
  59. .on_off_checkbox {
  60. width: 0px;
  61. }
  62. #login .logo {
  63. width: 500px;
  64. height: 51px;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <div id="alertMessage"></div>
  70. <div id="successLogin"></div>
  71. <div class="text_success"><img src="plug-in/login/images/loader_green.gif" alt="Please wait" /> <span><t:mutiLang langKey="common.login.success.wait"/></span></div>
  72. <div id="login">
  73. <div class="ribbon" style="background-image: url(plug-in/login/images/typelogin.png);"></div>
  74. <div class="inner">
  75. <div class="logo"><img src="plug-in/login/images/head.png" /><img src="plug-in/login/images/foot.png" /></div>
  76. <div class="formLogin">
  77. <form name="formLogin" id="formLogin" action="loginController.do?login" check="loginController.do?checkuser" method="post">
  78. <input name="userKey" type="hidden" id="userKey" value="D1B5CC2FE46C4CC983C073BCA897935608D926CD32992B5900" />
  79. <div class="tip">
  80. <input class="userName" name="userName" type="text" id="userName" title="" iscookie="true" value="admin" nullmsg="" />
  81. </div>
  82. <div class="tip">
  83. <input class="password" name="password" type="password" id="password" title="" value="123456" nullmsg="" />
  84. </div>
  85. <%--update-begin--Author:zhangguoming Date:20140226 for:添加验证码--%>
  86. <div>
  87. <div style="float: right; margin-left:-150px; margin-right: 20px;">
  88. <img id="randCodeImage" src="randCodeImage" />
  89. </div>
  90. <input class="randCode" name="randCode" type="text" id="randCode" title="" value="" nullmsg="" />
  91. </div>
  92. <%--update-end--Author:zhangguoming Date:20140226 for:添加验证码--%>
  93. <div class="loginButton">
  94. <div style="float: left; margin-left: -9px;">
  95. <input type="checkbox" id="on_off" name="remember" checked="ture" class="on_off_checkbox" value="0" />
  96. <span class="f_help"><t:mutiLang langKey="common.remember.user"/></span>
  97. </div>
  98. <div style="float: right; padding: 3px 0; margin-right: -12px;">
  99. <div>
  100. <ul class="uibutton-group">
  101. <li><a class="uibutton normal" href="#" id="but_login"><t:mutiLang langKey="common.login"/></a></li>
  102. <li><a class="uibutton normal" href="#" id="forgetpass"><t:mutiLang langKey="common.reset"/></a></li>
  103. </ul>
  104. </div>
  105. <%--
  106. <div style="float: left; margin-left: 30px;"><a href="init.jsp"><span class="f_help"><t:mutiLang langKey="common.init.data"/></span></a></div>
  107. --%>
  108. <%--update-begin--Author:ken Date:20140629 for:添加语言选择--%>
  109. <br>
  110. <t:dictSelect id="langCode" field="langCode" typeGroupCode="lang" hasLabel="false" defaultVal="zh-cn"></t:dictSelect>
  111. <%--update-begin--Author:ken Date:20140629 for:添加语言选择--%>
  112. </div>
  113. <div class="clear"></div>
  114. </div>
  115. <div>
  116. <div style="float: right; margin-left:-30px; margin-right: 40px;">
  117. 技术支持: <font color="red">JEECG开源社区</font> &nbsp;&nbsp;&nbsp; QQ群: <font color="red">106838471</font> &nbsp;&nbsp;&nbsp; 官网: <font color="red"><a href="http://www.jeecg.org" target="_blank" >www.jeecg.org</a></font>
  118. </div>
  119. </div>
  120. </form>
  121. </div>
  122. </div>
  123. <div class="shadow"></div>
  124. </div>
  125. <!--Login div-->
  126. <div class="clear"></div>
  127. <div id="versionBar">
  128. <div class="copyright">&copy; <t:mutiLang langKey="common.copyright"/> <span class="tip"><a href="http://www.jeecg.org" target="_blank" title=<t:mutiLang langKey="common.platform"/>>jeecg</a> <t:mutiLang langKey="common.browser.recommend"/><a href="http://www.jeecg.org" target="_blank" title=<t:mutiLang langKey="common.platform"/>> Jeecg社区</a></span></div>
  129. </div>
  130. <!-- Link JScript-->
  131. <script type="text/javascript" src="plug-in/jquery/jquery-1.9.0.min.js"></script>
  132. <script type="text/javascript" src="plug-in/jquery/jquery.cookie.js"></script>
  133. <script type="text/javascript" src="plug-in/login/js/jquery-jrumble.js"></script>
  134. <script type="text/javascript" src="plug-in/login/js/jquery.tipsy.js"></script>
  135. <script type="text/javascript" src="plug-in/login/js/iphone.check.js"></script>
  136. <script type="text/javascript" src="plug-in/login/js/login.js"></script>
  137. <!-- <script type="text/javascript" src="plug-in/lhgDialog/lhgdialog.min.js"></script> -->
  138. <%=lhgdialogTheme %>
  139. </body>
  140. </html>