index.jsp

来自「一些的javaee5的实用代码」· JSP 代码 · 共 32 行

JSP
32
字号
<html>
  <head>
    <title>表单验证的WEB应用程序</title>
  </head>
  <body>
<h1><font alignment=center>欢迎登陆</font></h1>
  <blockquote>
  <hr size=2 align=center length=70%>
  <h2>请输入用户名和口令</h2>
  <p>
  <form method="POST" name="Login" action="j_security_check">
  <table border=1>
    <tr>
      <td>用户名:</td>
      <td><input type="text" name="j_username"></td>
    </tr>
    <tr>
      <td>口令</td>
      <td><input type="password" name="j_password"></td>
    </tr>
    <tr>
      <td colspan=2 align=right><input type="submit" value="登陆" name="Submit"></td>
    </tr>
  </table>
  </form>
  
  <hr size=2 align=center length=70%>
  </blockquote>
  </body>
</html>

⌨️ 快捷键说明

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