28 lines
1.9 KiB
Plaintext
Executable File
28 lines
1.9 KiB
Plaintext
Executable File
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://java.sun.com/jsf/html"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:c="http://java.sun.com/jstl/core"
|
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
xmlns:pe="http://primefaces.org/ui/extensions">
|
|
|
|
<p:remoteCommand name="saveFuncChangePassword" actionListener="#{changeExpiredPassPersonalController.save()}" update=":formTable" process="@this, :formTable"/>
|
|
|
|
<h:panelGrid columns="1" id="controls" styleClass="m-controls">
|
|
<p:commandButton value="#{msg_general.btn_save}" icon="ui-icon-disk" action="#{changeExpiredPassPersonalController.save()}" process="@this, data-content" update="data-content"/>
|
|
</h:panelGrid>
|
|
|
|
<h:panelGrid id="data-content" columns="2">
|
|
<p:outputLabel for="oldpassword" value="#{msg_general.lbl_previousPassword}:" />
|
|
<p:password id="oldpassword" value="#{changeExpiredPassPersonalController.mfilelds['oldpassword']}" maxlength="20" style="width:180px;" required="true"/>
|
|
|
|
<p:outputLabel for="newpassword" value="#{msg_general.lbl_password}:" />
|
|
<p:password id="newpassword" value="#{changeExpiredPassPersonalController.mfilelds['newpassword']}" maxlength="20" style="width:180px;" required="true"/>
|
|
|
|
<p:outputLabel for="confirmpassword" value="#{msg_general.lbl_confirmpassword}:" />
|
|
<p:password id="confirmpassword" value="#{changeExpiredPassPersonalController.mfilelds['confirmpassword']}" maxlength="20" style="width:180px;" required="true"/>
|
|
|
|
<p:spacer height="10px;"/>
|
|
<p:spacer/>
|
|
</h:panelGrid>
|
|
</ui:composition> |