Examples
The following example is the general format for using custom fields in form-input tags:
<form name="theform" method="post" action="%PROGRAM%" autocomplete="off"> <INPUT type="hidden" name="CUSTOM1" value="value1"> <INPUT type="hidden" name="CUSTOM2" value="value2"> <INPUT type="hidden" name="CUSTOM3" value="value3"> <INPUT type="hidden" name="CUSTOM4" value="value4"> </form>
A practical application of this feature is to prompt the user to enter additional information that may be needed for company purposes. For example, if a user were to lock themselves out of Bravura Security Fabric , they can be prompted to enter their phone number to receive a call back from the help desk. In this case, you can modify the m4 files to include the following:
Please enter your phone number: <input type="text" name="CUSTOM1">
You can configure an interface program to dump the session information to a ticket, which can be used by the help desk to conduct an appropriate follow up for the locked out user.