I would like to additional instructions to a custom Drupal form, similar to hook_help, but at the bottom of the form. Is there a function or hook available for this?
2 Answers
If you add an element to the form with no type, its' value will be displayed as HTML on the page.
See here
$form['contact_information'] = array(
'#value' => t('You can leave us a message using the contact form below.'),
);
Comments
theming forms: http://www.lullabot.com/articles/modifying-forms-drupal-5-and-6
you can cck or other modules...