password.xhtml

26 lines | 1.07 kB Blame History Raw Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://java.sun.com/jsf/facelets"
	xmlns:c="http://java.sun.com/jstl/core" template="template-main.xhtml">

	<ui:define name="header">Change Password</ui:define>
	
	<ui:define name="content">
		<form action="#{url.passwordUrl}" method="post">
            <div>
            	<label for="password">#{messages.password}</label>
				<input type="password" id="password" name="password" />
			</div>
            <div>
            	<label for="password-new">#{messages.passwordNew}</label>
				<input type="password" id="password-new" name="password-new" />
			</div>
            <div>
            	<label for="password-confirm">#{messages.passwordConfirm}</label>
				<input type="password" id="password-confirm" name="password-confirm" />
			</div>

			<input type="button" value="Cancel" />
			<input type="submit" value="Save" />
		</form>
	</ui:define>
</ui:composition>