getpassword.jsp

来自「tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛tbuy1」· JSP 代码 · 共 49 行

JSP
49
字号
<%@page contentType="text/html" pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><f:view locale="#{localeBean.locale}">   <html>       <head>           <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">           <title>               <h:outputText value="#{sayUser.getPassword_title}"/>           </title>           <link rel="stylesheet" type="text/css"                 href="<%=request.getContextPath()%>/common/css/style.css"/>       </head>       <body>       <%@ include file="/common/header.jsp" %>       <h:form>           <h:messages infoClass="infos"             errorClass="errors"             fatalClass="fatals"             globalOnly="true"             showDetail="true"/>           <h:panelGrid border="1"             columns="2"             cellpadding="3"             cellspacing="3"            styleClass="table1"            style="margin-bottom:250px">                <h:outputText value="#{sayUser.getPassword_id}"/>                <h:inputText value="#{user_getPassword.id}" required="true"/>                                <h:outputText value="#{sayUser.getPassword_validateCode}"/>                <h:panelGrid columns="2" border="0">                    <h:inputText id="validateCode" size="6"                    value="#{user_getPassword.validateCode}"/>                    <h:graphicImage url="/common/user/validateCode.jsp"/>                </h:panelGrid>                                <h:panelGroup/>                <h:commandButton value="#{sayUser.getPassword_ok}"                 action="#{user_getPassword.sendPasswordMail}"/>       </h:panelGrid>       </h:form>       <%@ include file="/common/footer.jsp" %>       </body>   </html></f:view>

⌨️ 快捷键说明

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