<%@ taglib prefix="s" uri="/struts-tags"%> <%@ taglib prefix="sb" uri="/struts-bootstrap-tags"%> <h1 align="center">Change Password</h1> <div align="center"> <font color="red"><s:actionerror /></font><font color="green"><s:actionmessage /></font> </div> <s:form action="s_ChangePassword" theme="bootstrap" cssClass="form-horizontal offset4"> <s:hidden name="id" value="%{#session.user.id}"></s:hidden> <s:password name="oldPassword" label="Old Password*" tooltip="Enter your Current Password here"></s:password> <s:password name="newPassword" label="New Password*" tooltip="Enter your New Password here"></s:password> <s:password name="confirmPassword" label="Confirm Password*" tooltip="Confirm Password"></s:password> <div class="span6" align="center"> <s:submit name="operation" value="Save" theme="simple" cssClass="btn-success"></s:submit> </div> </s:form> |