Add Rich text and Raw HTML fields to form element

Hi,

I really miss fields like rich text and raw HTML in form element.
Too bad we have to install a form plugin for such simple thing as GDPR text, for instance.

Use cases:

  • Field description
  • GDPR notice
  • Any informative text between fields or anywhere but which needs to disappear on form submission.

In the meantime, here is a simple workaround for adding text before submit button, for instance:

.submit-button-wrapper::before {
  content: "Bla bla bla bla.";
  font-size: var(--text-xs);
  margin-bottom: var(--space-s);
}
5 Likes

I hope this will be added in the future!