login.jsp

来自「用jsp语言自己做的一个网站bookshot的全套程序以及一些样例。完全属于原创」· JSP 代码 · 共 41 行

JSP
41
字号
<%@ page contentType="text/html" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>

<html>
  <head>
    <title>Project Billboard</title>
  </head>
  <body bgcolor="white">
    <h1>Welcome to the Project Billboard</h1>
    Your personalized project news web site.
    <p>
    <font color="red">
      <c:out value="${param.errorMsg}" />
    </font>

    <form action="authenticate.jsp" method="post">

      <input type="hidden" name="origURL" 
        value="<c:out value="${param.origURL}" />">

      Please enter your User Name and Password, and click Enter.
      <p>
      Name: 
      <input name="userName" 
        value="<c:out value="${cookie.userName.value}" />" 
        size="10">
      Password: 
      <input type="password" name="password" 
        value="<c:out value="${cookie.password.value}" />" 
        size="10">
      <input type="submit" value="Enter">
      <p>
      Remember my name and password:
      <input type="checkbox" name="remember"
        <c:if test="${!empty cookie.userName}">checked</c:if>>
      <br>
      (This feature requires cookies to be enabled in your browser)
    </form>
  </body>
</html>

⌨️ 快捷键说明

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