blob: 59145f64ea3e698df2742dc563f5a053cd05b98e [file] [log] [blame]
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets">
<body>
<ui:composition template="../layout/template.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:tr="http://myfaces.apache.org/trinidad"
xmlns:trh="http://myfaces.apache.org/trinidad/html">
<ui:define name="content">
<tr:panelFormLayout>
<tr:inputText label="old password" value="#{registrationPage.oldPassword}" secret="true"/>
<tr:inputText label="new password" value="#{registrationPage.password}" secret="true"/>
<tr:inputText label="re-enter password" value="#{registrationPage.passwordRepeated}" secret="true"/>
</tr:panelFormLayout>
<tr:commandButton text="save" action="#{registrationPage.finish}"/>
</ui:define>
</ui:composition>
</body>
</html>