New feature

New HTML block in the form builder

Release date
Wed, Jul 2

You can now create HTML blocks in the form builder. Use it to add any kind of styled text, images, or whatever you want.

Note that scripts are not allowed inside html blocks, and they will be stripped.

You can use any common Tailwind css class

Here's an example:

type html
<div class="bg-blue-50 border-l-4 border-blue-400 p-4 my-4 rounded">
  <strong class="block text-blue-700 text-lg mb-2">
    This is a raw HTML block inside the form.
  </strong>
  <p class="text-blue-600 mb-2">
    You can add <em class="italic">any HTML content</em> here, such as images, links, or custom widgets.
  </p>
  <img src="https://placehold.co/100x100" alt="Example image" class="rounded shadow">
</div>