📄 password.jsp
字号:
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><%@taglib prefix="t" uri="http://myfaces.apache.org/tomahawk"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><style type="text/css">.tCol1 { vertical-align: top;}.tStyle1 { margin-top: 20px; margin-left: 20px; margin-bottom: 20px; background: #F6F6F6;}</style><f:view locale="#{localeBean.locale}"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> <h:outputText value="#{sayUser.password_title}"/> </title> <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/common/css/style.css"/> </head> <body style="margin:0px"> <h:form> <h:panelGrid border="0" columns="0" width="100%" cellpadding="0" cellspacing="0" columnClasses="tCol1" styleClass="infoH table2"> <h:panelGrid border="0" columns="1" cellpadding="3" cellspacing="3" styleClass="tStyle1"> <h:panelGroup> <fieldset> <legend> <h:outputText value="#{sayUser.password_title}"/> </legend> <h:messages infoClass="infos" errorClass="errors" fatalClass="fatals" showDetail="true" globalOnly="true" layout="table"/> <h:panelGrid columns="3" border="0" cellpadding="3" cellspacing="3" style="text-align:left;margin-left:10px;margin-right:0px"> <h:outputText value="#{sayUser.password_passwordOld}" styleClass="colorOrange"/> <h:inputSecret id="passwordOld" value="#{user_password.passwordOld}" required="true"/> <h:message for="passwordOld" styleClass="errors"/> <h:outputText value="#{sayUser.password_passwordNew1}" styleClass="colorOrange"/> <h:inputSecret id="passwordNew1" value="#{user_password.passwordNew1}" required="true"> <f:validateLength minimum="6" maximum="18"/> </h:inputSecret> <h:message for="passwordNew1" styleClass="errors"/> <h:outputText value="#{sayUser.password_passwordNew2}" styleClass="colorOrange"/> <h:inputSecret id="passwordNew2" value="#{user_password.passwordNew2}" required="true"> <f:validateLength minimum="6" maximum="18"/> </h:inputSecret> <h:message for="passwordNew2" styleClass="errors"/> <h:panelGroup/> <h:panelGroup> <h:commandButton value="#{sayUser.password_change}" action="#{user_password.change}" style="margin-right:5px"/> <h:commandButton value="#{sayUser.password_cancel}" immediate="true"/> </h:panelGroup> <h:panelGroup/> </h:panelGrid> </fieldset> </h:panelGroup> </h:panelGrid> </h:panelGrid> </h:form> </body></html></f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -