home.jsp
来自「example for jsp and jsf」· JSP 代码 · 共 17 行
JSP
17 行
<%@ page contentType="text/html"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<f:view>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="Nom :"/>
<h:inputText value="#{LoginBean.login}" />
<h:outputText value="Mot de passe :"/>
<h:inputSecret value="#{LoginBean.pwd}"/>
<h:commandButton value="Login" action="#{LoginBean.verifier}"/>
</h:panelGrid>
</h:form>
</f:view>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?