📄 login.jsp——
字号:
<%@page contentType="text/html; charset=UTF-8"%>
<html>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<f:view>
<f:loadBundle basename="messages" var="msgs"/>
<head>
<title><h:outputText value="#{msgs.login_title}"/></title>
</head>
<body>
<h:form>
<h3><h:outputText value="#{msgs.login_prompt}"/></h3>
<table>
<tr>
<td></td>
<td>
<h:graphicImage value="/images/jsfabc.gif"/>
</td>
</tr>
<tr>
<td><h:outputText value="#{msgs.login_name}"/>:</td>
<td>
<h:inputText id="userName" value="#{user.userName}" required="true"/>
<h:message for="userName" />
</td>
</tr>
<tr>
<td><h:outputText value="#{msgs.login_password}"/>:</td>
<td>
<h:inputSecret id="password" value="#{user.password}" required="true">
<f:validateLength minimum="1" />
</h:inputSecret>
<h:message for="password" />
</td>
</tr>
</table>
<p>
<h:commandButton value="#{msgs.login_login}" action="#{user.loginAction}"/>
</h:form>
<h:messages globalOnly="true">
</h:messages>
</body>
</f:view>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -