In website interactions forms, a submit element displays the 'Continue' and 'Reset' buttons.

This is automatically added when an interaction exits in the await state. You do not need to do it yourself.

start:
  await:
    form:
      title: Menu
      elements:
        submit:
          continue@bool: yes
          reset@bool: yes

Syntax

buttons:

Alternatively, you can define custom buttons of type continue or reset. The clicked button will set the submit/ placeholder to its value:.

start:
  await:
    form:
      title: Menu
      elements:
        submit/prompt_menu:
          buttons:
            continue/save:
              label: Save
              size: whole
            continue/discard:
              label: Discard
              style: secondary
              size: half
            reset/back:
              label: Back
              value: back
              size: half

hidden:

This form element can be conditionally hidden.

hidden@bool: {{expression}}