Unifier Web App Programmers: Please update the "Change Password" dialog box to allow a person to hit
Very simply you can modify the following line in \ROOT\WEB-INF\webant\bluedoor\LoginForm2.vm
it is in the last hidden form in that file with a <form id = ""changePWD"...>
the input type has SUBMIT on the CANCEL button, you just need to switch them.
E.G.
Change:
<input type="button" class="btn btn-action right" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" value="$web.translate("OK")" onclick="return cpSubmitForm();"/>
<input type="submit" class="btn btn-action" value="$web.translate("Cancel")" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" onclick="cancelChangePwd();"/>
to:
<input type="submit" class="btn btn-action right" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" value="$web.translate("OK")" onclick="return cpSubmitForm();"/>