📄 home.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -