editpassword.jsp
来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· JSP 代码 · 共 65 行
JSP
65 行
<%@ page import="org.gridsphere.services.core.security.role.PortletRole" %><%@ page import="javax.portlet.RenderRequest" %><%@ page import="java.util.Locale" %><%@ taglib uri="/portletUI" prefix="ui" %><%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %><portlet:defineObjects/><jsp:useBean id="logintime" class="java.lang.String" scope="request"/><% Locale locale = (Locale) request.getAttribute("locale"); %><% RenderRequest req = (RenderRequest) pageContext.findAttribute("renderRequest"); %><div style="width: 400px; margin: 0px 0px 0px 15%;"><ui:form><ui:messagebox beanId="msg"/><h3><ui:text value="Change Password" style="bold"/></h3> <ui:frame> <ui:tablerow> <ui:tablecell width="150"> <ui:text key="ORIG_PASSWORD"/> </ui:tablecell> <ui:tablecell width="150"> <ui:password beanId="origPassword" size="20"/> </ui:tablecell> </ui:tablerow> <ui:tablerow> <ui:tablecell width="150"> <ui:text key="NEW_PASSWORD"/> </ui:tablecell> <ui:tablecell width="150"> <ui:password beanId="password" size="20"/> </ui:tablecell> </ui:tablerow> <ui:tablerow> <ui:tablecell width="150"> <ui:text key="CONFIRM_PASS"/> </ui:tablecell> <ui:tablecell width="150"> <ui:password beanId="confirmPassword" size="20"/> </ui:tablecell> </ui:tablerow> </ui:frame> <ui:frame> <ui:tablerow> <ui:tablecell > <ui:actionsubmit action="doSavePass" key="SAVE"/> <ui:actionsubmit action="doCancel" key="CANCEL"/> </ui:tablecell> </ui:tablerow> </ui:frame> </ui:form></div>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?