zoukankan      html  css  js  c++  java
  • 以前的loginUI

    <%@ page language="java" pageEncoding="UTF-8"%>
    <%@ include file="/WEB-INF/jsp/public/commons.jspf" %>
    <html>
    <head>
    	<title>TSDR OA System</title>
    	<link href="<%=basePath %>/style/blue/login.css" type="text/css" rel="stylesheet" charset="utf-8">
    	
    	<script type="text/javascript">
    		$(function(){
    			document.forms[0].loginName.focus();
    		});
    		
    		// 在被嵌套时就刷新上级窗口
    		if(window.parent != window){
    			window.parent.location.reload(true);
    		}
    	</script>
    	
    	<%--<script type="text/javascript">
    	  $(function(){
    		   $.get("/springMVCSSH2/user/login",function(data){
    			   if("fail"==data.result){
    				   alert("aa");
    				  document.getElementById("error").innerHTML="<font color="red">用户名或者密码错误</font>";
    			   }
    			  
    		   });
    	   }
    	</script>
    --%>
    </head>
    
    <body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 class=PageBody >
    
    
    
    <!-- 显示表单 -->
    <form action="/portal/user/login" focusElement="loginNameInput">
        <div id="CenterAreaBg"> 
            <div id="CenterArea">
                <div id="LogoImg"><img border="0" src="<%=basePath %>/style/blue/images/logo.png" /></div>
                <div id="LoginInfo">
                    <table BORDER=0 CELLSPACING=0 CELLPADDING=0 width=100%>
                    	<tr>
                    		<td colspan="3"><!-- 显示错误 -->
    							<font color="red">   ${loginError }</font>
                    		</td> 
                    	</tr>
                        <tr>
                            <td width=45 class="Subject"><img border="0" src="<%=basePath %>/style/blue/images/login/userId.gif" /></td>
                            <td>
                            	<input type="text" name="loginName" size="19" tabindex="1" cssClass="TextField required" id="loginNameInput" />
                            </td>
                            <td rowspan="2" style="padding-left:10px;">
                            	<input type="image" tabindex="3" src="<%=basePath %>/style/blue/images/login/userLogin_button.jpg" />
                            </td>
                        </tr>
                        <tr>
                            <td class="Subject"><img border="0" src="<%=basePath %>/style/blue/images/login/password.gif" /></td>
                            <td><input type="password" name="password" id="aa" size="20" tabindex="2" showPassword="false" cssClass="TextField required" /></td>
                        </tr>
                    </table>
                </div>
                <div id="CopyRight"><a href="javascript:void(0)">© 2016 版权所有 TSEC TSDR SE Lab</a></div>
            </div>
        </div>
        </form>
    </body>
    
    </html>
    
  • 相关阅读:
    面向对象-------------------------------面向对象的零散小知识
    面向对象------------------------------反射(面向对象的又一个思路)
    面向对象-------------------------对象和类的属性
    面向对象------------------一些双下方法
    装饰器搞一下
    字符串切片取值规则
    On The Way—Step 2 Python入门之Python内容初始
    socket对于recv函数的理解
    Socket通信原理学习
    [SUCTF 2019]Pythonginx
  • 原文地址:https://www.cnblogs.com/wujixing/p/5801633.html
Copyright © 2011-2022 走看看