bbsadminlogin.jsp

来自「一个简单的BBS论坛」· JSP 代码 · 共 59 行

JSP
59
字号
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'bbsAdminLogin.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
     <center>

    <h1 align="center">论坛管理员通道</h1>
    <br/>
    	<form action="action?cmd=15" method="post">
    <table height="108" cellspacing="0" align="center">
	    <tr>
	    	<td width="19" style="background-image: url('images/201.gif');"></td>
	    	<td width="35" style="background-image: url('images/202.jpg');"></td>
	    	<td width="350" style="background-image: url('images/202.jpg');">
		    <table>
		    	<tr>
		    		<td>用户名:</td>
		    		<td><input type="text" name="admname"  size="20"></td>
		    	</tr>
		    	<tr>
		    		<td>密  码:</td>
		    		<td><input type="password" name="admpassword" size="22"></td>
		    		<td><input type="submit" value="登陆"></td>
		    	</tr>
		    </table>  
	    	</td>
	    	<td width="230" style="background-image: url('images/202.jpg');"></td>
	    	<td width="18" style="background-image: url('images/203.jpg');"></td>
	    </tr>
    </table>
    <center>
    	Study Online 教育在线版权所有
    	<br/><br/>
    </form>
    <p style="color: red;">${requestScope.msg}</p>
  </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?