Form message
You can define messages to be shown on the form whenever users go to the form.

You can also show:
-
Custom messages on forms depending on certain conditions using permission rules on Modify form permissions. See Permission Rules for details.
-
Confirmation, warning and error messages on forms using form scripts. See NSOA.form.confirmation(message) and NSOA.form.error(field, message) under User Scripting.
Form messages can be displayed either at the top of the form or to the right of the form at the top.

The message can be simple text or may use HTML formatting.
-
Example of HTML formatting
<p style="font-family:arial;color:green;font-size:20px;">This project must be closed by year end.</p>
-
Example of an information message box
<span class="message blockMessage informationMessage">This project must be closed by year end.</span>
-
Example of a warning message box
<span class="message blockMessage warningMessage">This project must be closed by year end.</span>
-
Example of an error message box
<span class="message blockMessage errorMessage">This project must be closed by year end.</span>
Note:This will format the text to look like an error message. It will not stop the form from being saved.
You should not use this feature to run client side script to modify form behavior.