📄 adminlogin.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<%
String errorInfo = (String)request.getAttribute("errorInfo");
%>
<!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>
<title>Admin Login</title>
<link href="css_js/style.css" rel="stylesheet" type="text/css" />
<script language="JavaScript">
<%
if (errorInfo != null && !errorInfo.equals("")) {
out.println("alert('" + errorInfo + "');");
}
%>
</script>
</head>
<body onload="document.adminLoginForm.username.focus();">
<a name="top" />
<div id="mainDiv">
<div id="titleDiv">
<div id="titleImageDiv">
<img src="images/title.gif" border="0" width="234" height="88" />
</div>
<div id="poweredByDiv"><br /><img src="images/tiandinet.com.gif" border="0" width="140" height="65" /></div>
</div>
<div id="navBarDiv"><a href="IndexServlet">Back</a> </div>
<div id="messagesDiv">
<table width="100%" border="0" align="center" height="300">
<tr>
<td align="center" valign="middle">
<form name="adminLoginForm" id="adminLoginForm" action="AdminServlet" method="post">
<table border="0" align="center" width="50%">
<tr>
<td width="40%" align="right">User name:</td>
<td width="60%" align="left"> <input name="username" type="text" id="username" maxlength="20" /></td>
</tr>
<tr>
<td width="40%" align="right">Password:</td>
<td width="60%" align="left"> <input name="password" type="password" id="password" maxlength="20" /></td>
</tr>
<tr>
<td colspan="2" align="right"><input type="hidden" name="action" value="login" /><input type="submit" /> <input type="button" value="Back" onclick="JavaScript:history.back();" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</div>
<div id="bottomNavBarDiv"> </div>
<div id="copyrightDiv">
<div id="copyrightFontDiv"> © Since 2003 <a href="http://www.tiandinet.com" target="_blank">天地网络</a> All Rights Reserved <strong>Powered</strong> by <a href="mailto:tiandinet_support@hotmail.com">Tiandi</a></div>
<div id="hibernateLog"><a href="http://www.hibernate.org" target="_blank"><img src="images/hibernate.gif" border="0" width="226" height="40" /></a></div>
</div>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -