Process Variables with Embeded Forms

Hello Team,

maybe you have seen this question before but I did not find the right answer.

If I want to use a variable from my process in the form, how can I retrieve the value to display it as text?
Example: MyVariableValue

Thank you.

help please

We need more details
Show your code and the process.
and what you have tried?

For example : I want to add a variable value after options (in the label text)
I tried : Do you want to customize your options ${Variable} and {{Variable}} and it’s always empty.

<div class="form-group">
<div class="col-md-10 col-md-offset-2">
  <div class="checkbox">
    <label>
      <input cam-variable-name="car_options"
             cam-variable-type="Boolean"
             type="checkbox"
             name="carOptions"
             class="form-control" />
      **Do you want to customize your options ?**
    </label>
  </div>
</div>

I want to get camunda process variables in my form on a JS variable and use it in my conditions and displays.

For now, i only know how to use cam-variable in input …