?? login.jsp
字號:
<%@include file="/include/nocache.jsp"%><%@ page errorPage="/error.jsp" %><%@page import="java.net.URLDecoder" %><% String sMessage = null;%><html> <head> <title>Heritrix: Login</title> <link rel="stylesheet" href="<%=request.getContextPath()%>/css/heritrix.css"> </head> <body> <table border="0" cellspacing="0" cellpadding="0" height="100%"> <tr> <td width="155" height="60" valign="top" nowrap> <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%"> <tr> <td align="center" height="40" valign="bottom"> <a border="0" href="<%=request.getContextPath()%>/"><img border="0" src="<%=request.getContextPath()%>/images/logo.gif" width="145"></a> </td> </tr> <tr> <td class="subheading"> Login </td> </tr> </table> </td> <td width="100%"> </td> </tr> <tr> <td bgcolor="#0000FF" height="1" colspan="2"> </td> </tr> <tr> <td colspan="2" height="100%" valign="top" class="main"> <form method="post" action='<%= response.encodeURL("j_security_check") %>' name="loginForm"> <input type="hidden" name="action" value="login"> <input type="hidden" name="redirect" value="<%=request.getParameter("back")%>"> <table border="0"> <% if(sMessage != null ){ %> <tr> <td colspan="2" align="left"> <b><font color=red><%=sMessage%></font></b> </td> </tr> <%}%> <tr> <td class="dataheader"> Username: </td> <td> <input name="j_username"> </td> </tr> <tr> <td class="dataheader"> Password: </td> <td> <input type="password" name="j_password"> </td> </tr> <tr> <td colspan="2" align="center"> <input type="submit" value="Login"> </td> </tr> </form> </td> </tr> </table> </body></HTML>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -